mirror of
https://github.com/danbulant/ester_os
synced 2026-05-19 04:08:44 +00:00
Remove "error" from the name
This commit is contained in:
parent
751b1df280
commit
99b9d522a9
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
export default NotYetImplemented;
|
||||
Loading…
Reference in a new issue