mirror of
https://github.com/nesterow/offload.git
synced 2024-11-14 22:14:03 +00:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
|
export class OffloadError extends Error {
|
||
|
constructor(message: string, options?: any) {
|
||
|
super(message, options);
|
||
|
this.name = "OffloadError";
|
||
|
}
|
||
|
}
|