diff --git a/src/util/errors/ConfigurationError.ts b/src/util/errors/ConfigurationError.ts deleted file mode 100644 index 95638aaac..000000000 --- a/src/util/errors/ConfigurationError.ts +++ /dev/null @@ -1,8 +0,0 @@ -/** - * An error thrown when something is flawed about the configuration. - */ -export class ConfigurationError extends Error { - public constructor(message: string) { - super(message); - } -}