From 2e951f5e580ec03ed31cda1f595ca371fe7fe277 Mon Sep 17 00:00:00 2001 From: James Lyne Date: Tue, 18 May 2021 18:32:52 +0100 Subject: [PATCH] Remove ConfigurationError prefix --- src/errors/ConfigurationError.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/errors/ConfigurationError.ts b/src/errors/ConfigurationError.ts index a218015..a85cd49 100644 --- a/src/errors/ConfigurationError.ts +++ b/src/errors/ConfigurationError.ts @@ -17,6 +17,6 @@ export default class ConfigurationError extends Error { constructor(message: string) { super(message); - this.name = "ConfigurationError"; + this.name = ""; } } \ No newline at end of file