本演示项目在Unity for Android Build中启用部分华为HMS和AGC服务,对应的类和函数的名称和用法相同。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

33 行
1.1 KiB

using HuaweiService;
using HuaweiService.CloudStorage;
using UnityEngine;
namespace CloudStorageTest
{
public class StorageExceptionTest
{
public void run()
{
storageExceptionTest();
Debug.Log("StorageExceptionTest finished.");
}
private void storageExceptionTest()
{
StorageException storageException = StorageException.fromErrorStatus(11009);
StorageException fromException = StorageException.fromException(storageException.toType<Throwable>());
StorageException fromException2 = StorageException.fromException(storageException.toType<Throwable>(), 0);
int errorCode = storageException.getErrorCode();
int httpCode = storageException.getHttpCode();
Throwable cause = storageException.getCause();
bool retry = storageException.overRetryTimes();
Debug.Log("storageExceptionTest success. errorCode: " + errorCode +
", httpCode: " + httpCode +
",retry: " + retry +
"cause: " + cause);
}
}
}