mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 01:07:04 +02:00
7 lines
127 B
TypeScript
7 lines
127 B
TypeScript
export class IsolateError extends Error {
|
|
constructor(message: string) {
|
|
super(message);
|
|
this.name = 'IsolateError';
|
|
}
|
|
}
|