hrw-certificate-editor
Version:
Design Editor Tools with React.js + ant.design + fabric.js
13 lines • 396 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;
//# sourceMappingURL=NoExistWordException.js.map