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

9 lines
181 B
JavaScript

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