typedrequest/ts/typedrequest.classes.typedresponseerror.ts

10 lines
271 B
TypeScript
Raw Normal View History

2020-06-16 15:03:10 +00:00
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;
}
}