typedrequest/ts/typedrequest.classes.typedresponseerror.ts
2024-02-20 17:40:30 +01: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;
}
}