export class NotImplemented extends Error {
    constructor() {
        super(`not implemented!`);
    }
}
