您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
35 行
994 B
35 行
994 B
namespace Unity.Services.Lobbies.Http
|
|
{
|
|
static internal class CommonErrors
|
|
{
|
|
private const string ErrorPrefix = "com.unity.services.lobby";
|
|
|
|
public static IError CreateUnspecifiedHttpError(string details)
|
|
{
|
|
return new BasicError(
|
|
$"{ErrorPrefix}http.httperror",
|
|
"Unspecified HTTP error",
|
|
null,
|
|
0,
|
|
details
|
|
);
|
|
}
|
|
|
|
public static IError RequestOnSuccessNull => new BasicError(
|
|
$"{ErrorPrefix}onsuccessnullerror",
|
|
"Request must have an onSuccess callback",
|
|
null,
|
|
0, //TODO: define a code space for SDK side errors so all errors can be identified by a code
|
|
"");
|
|
|
|
|
|
public static IError HttpNetworkError => new BasicError(
|
|
$"{ErrorPrefix}httpclient.networkerror",
|
|
"Network Error",
|
|
null,
|
|
0,
|
|
""
|
|
);
|
|
|
|
}
|
|
}
|