mirror of
https://github.com/danbulant/ester_os
synced 2026-06-18 13:51:09 +00:00
11 lines
No EOL
315 B
TypeScript
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; |