From 3e9f294123eb660f4572ee64703594da2488e957 Mon Sep 17 00:00:00 2001 From: Joachim Van Herwegen Date: Tue, 22 Jun 2021 11:13:50 +0200 Subject: [PATCH] refactor: Remove unused ConfigurationError --- src/util/errors/ConfigurationError.ts | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 src/util/errors/ConfigurationError.ts 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); - } -}