mirror of
https://github.com/danbulant/ester_os
synced 2026-07-06 11:30:40 +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';
|
import Error from './error';
|
||||||
|
|
||||||
class NotYetImplementedError extends Error {
|
class NotYetImplemented extends Error {
|
||||||
name:string = "NotYetImplementedError";
|
name:string = "NotYetImplementedError";
|
||||||
constructor(){
|
constructor(){
|
||||||
super("This function wasn't yet implemented");
|
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