mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
10 lines
290 B
TypeScript
10 lines
290 B
TypeScript
import type { OldmarrConfig } from "@homarr/old-schema";
|
|
|
|
export class OldHomarrImportError extends Error {
|
|
constructor(oldConfig: OldmarrConfig, cause: unknown) {
|
|
super(`Failed to import old homarr configuration name=${oldConfig.configProperties.name}`, {
|
|
cause,
|
|
});
|
|
}
|
|
}
|