unity-builder/src/model/error/not-implemented-exception.ts

9 lines
186 B
TypeScript

class NotImplementedException extends Error {
constructor(message = '') {
super(message);
this.name = 'NotImplementedException';
}
}
export default NotImplementedException;