UNPKG

plot-plan-designer

Version:

Design Editor Tools with React.js + ant.design + fabric.js

10 lines (9 loc) 234 B
export default class NoExistWordException { constructor() { this.message = 'Does not exist word.'; this.name = 'NoExistWordException'; } toString() { return `${this.name}: ${this.message}`; } }