fix(core): update
This commit is contained in:
10
ts/classes.typedresponseerror.ts
Normal file
10
ts/classes.typedresponseerror.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user