UNPKG

@prismadev/webmarine2d

Version:

Core utils for 2D verson of game engine Webmarine

8 lines 240 B
/** Error type for non existent search in array */ export class NotFoundError extends Error { constructor() { super(...arguments); this.message = 'Item not found'; } } //# sourceMappingURL=NotFoundError.js.map