fix: remote update failed and template not found

This commit is contained in:
2025-05-15 20:23:48 +08:00
parent 00ce79fa7b
commit 1eded97c76
11 changed files with 394 additions and 296 deletions

View File

@@ -1394,7 +1394,6 @@ export interface ISystemException extends IException {
}
export class ArgumentException extends SystemException implements IArgumentException {
message?: string;
paramName?: string | undefined;
constructor(data?: IArgumentException) {
@@ -1471,4 +1470,4 @@ function throwException(message: string, status: number, response: string, heade
throw result;
else
throw new ApiException(message, status, response, headers, null);
}
}