您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
571 B
20 行
571 B
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HuaweiService.push
|
|
{
|
|
public class BaseException_Data : IHmsBaseClass{
|
|
public string name => "com.huawei.hms.push.BaseException";
|
|
}
|
|
public class BaseException :HmsClass<BaseException_Data>
|
|
{
|
|
public BaseException (int arg0): base(arg0) { }
|
|
public BaseException (): base() { }
|
|
public int getErrorCode() {
|
|
return Call<int>("getErrorCode");
|
|
}
|
|
public string getMessage() {
|
|
return Call<string>("getMessage");
|
|
}
|
|
}
|
|
}
|