11 lines
273 B
TypeScript
11 lines
273 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;
|
|
}
|
|
}
|