mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 09:21:00 +01:00
9 lines
366 B
TypeScript
9 lines
366 B
TypeScript
|
|
import type { IntegrationErrorData } from "./integration-error";
|
||
|
|
import { IntegrationError } from "./integration-error";
|
||
|
|
|
||
|
|
export class IntegrationUnknownError extends IntegrationError {
|
||
|
|
constructor(integration: IntegrationErrorData, { cause }: ErrorOptions) {
|
||
|
|
super(integration, "An unknown error occured while executing Integration method", { cause });
|
||
|
|
}
|
||
|
|
}
|