UNPKG

@prismadev/webmarine2d

Version:

Core utils for 2D verson of game engine Webmarine

9 lines 289 B
/** Error type for identifiers */ export class IdentifierError extends Error { constructor(err) { super(); this.messageBase = 'Cannot add identifier'; this.message = [this.messageBase, err].join(': '); } } //# sourceMappingURL=IdentifierError.js.map