export default class MethodNotImplementedYetException extends Error { constructor(method: string) { super(`This method (${method}) has not been implemented yet.`); } }