You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
461 B
C#
36 lines
461 B
C#
2 months ago
|
|
||
|
using System;
|
||
|
|
||
|
public class IronSourceError
|
||
|
{
|
||
|
private string description;
|
||
|
private int code;
|
||
|
|
||
|
public int getErrorCode ()
|
||
|
{
|
||
|
return code;
|
||
|
}
|
||
|
|
||
|
public string getDescription ()
|
||
|
{
|
||
|
return description;
|
||
|
}
|
||
|
|
||
|
public int getCode ()
|
||
|
{
|
||
|
return code;
|
||
|
}
|
||
|
|
||
|
public IronSourceError (int errorCode, string errorDescription)
|
||
|
{
|
||
|
code = errorCode;
|
||
|
description = errorDescription;
|
||
|
}
|
||
|
|
||
|
public override string ToString ()
|
||
|
{
|
||
|
return code + " : " + description;
|
||
|
}
|
||
|
}
|
||
|
|