typedrequest/ts/typedrequest.classes.typedresponseerror.ts
2020-06-16 15:17:46 +00:00

10 lines
272 B
TypeScript

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