Create notYetImplemented.ts

This commit is contained in:
danbulant 2020-02-16 14:49:09 +01:00
parent 7e49e6f51b
commit 25e691face

View file

@ -0,0 +1,11 @@
import Error from './error';
class NotYetImplementedError extends Error {
name:string = "NotYetImplementedError";
constructor(){
super("This function wasn't yet implemented");
this.stack = (<any>new Error("This function wasn't yet implemented")).stack;
}
}
export default NotYetImplementedError;