plot-plan-designer
Version:
Design Editor Tools with React.js + ant.design + fabric.js
13 lines (12 loc) • 336 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class NoExistWordException {
constructor() {
this.message = 'Does not exist word.';
this.name = 'NoExistWordException';
}
toString() {
return `${this.name}: ${this.message}`;
}
}
exports.default = NoExistWordException;