import Error from './error'; class NotYetImplemented extends Error { name:string = "NotYetImplementedError"; constructor(){ super("This function wasn't yet implemented"); this.stack = (new Error("This function wasn't yet implemented")).stack; } } export default NotYetImplemented;