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