hrw-certificate-editor
Version:
Design Editor Tools with React.js + ant.design + fabric.js
13 lines • 403 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class UnsafetyWordException {
constructor() {
this.message = 'Includes unsafety word.';
this.name = 'UnsafetyWordException';
}
toString() {
return `${this.name}: ${this.message}`;
}
}
exports.default = UnsafetyWordException;
//# sourceMappingURL=UnsafetyWordException.js.map