ester_os/client/src/errors/notYetImplemented.ts
2020-02-16 17:49:10 +01:00

11 lines
No EOL
315 B
TypeScript

import Error from './error';
class NotYetImplemented 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 NotYetImplemented;