From 99b9d522a9a6f972d4b5aa5012d315408fa843b9 Mon Sep 17 00:00:00 2001 From: danbulant Date: Sun, 16 Feb 2020 17:49:10 +0100 Subject: [PATCH] Remove "error" from the name --- client/src/errors/notYetImplemented.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/errors/notYetImplemented.ts b/client/src/errors/notYetImplemented.ts index ec4e27b..8008677 100644 --- a/client/src/errors/notYetImplemented.ts +++ b/client/src/errors/notYetImplemented.ts @@ -1,6 +1,6 @@ import Error from './error'; -class NotYetImplementedError extends Error { +class NotYetImplemented extends Error { name:string = "NotYetImplementedError"; constructor(){ super("This function wasn't yet implemented"); @@ -8,4 +8,4 @@ class NotYetImplementedError extends Error { } } -export default NotYetImplementedError; \ No newline at end of file +export default NotYetImplemented; \ No newline at end of file