Node FaaS 通用异常
不建议直接通过 new IndustryError 创建实例,建议使用更详细的 TppInvokeError 和 TairReadError 等,如果没有找到合适的错误类型,可以从 IndustryError 继承自定义错误类型。
new IndustryError
TppInvokeError
TairReadError
IndustryError
定义自己的错误类型
export class MyError extends IndustryError { static description = 'xxx异常'; constructor(message?: string, options?: ErrorOptions) { super(message || MyError.description, options); this.name = MyError.name; } }
异常描述,字符串
异常附加信息
IndustryError instance
Optional override for formatting stack traces
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Create .stack property on a target object
Node FaaS 通用异常
不建议直接通过
new IndustryError
创建实例,建议使用更详细的TppInvokeError
和TairReadError
等,如果没有找到合适的错误类型,可以从IndustryError
继承自定义错误类型。定义自己的错误类型
异常描述,字符串
异常附加信息
IndustryError instance