typedrequest/ts/classes.typedresponseerror.ts
2024-05-30 19:01:39 +02:00

11 lines
263 B
TypeScript

import * as plugins from './plugins.js';
export class TypedResponseError {
public errorText: string;
public errorData: any;
constructor(errorTextArg: string, errorDataArg?: any) {
this.errorText = errorTextArg;
this.errorData = errorDataArg;
}
}