UNPKG

miaam

Version:

Miaam Web Game Framework

18 lines (16 loc) 302 B
/** * * Interface Error can be thrown * when users of the API broke the contract or the critical warnings * * @since 0.0.1 * @public * @class */ class InterfaceError extends Error { constructor(...params) { super(params); this.name = 'InterfaceError'; } } export default InterfaceError;