UNPKG

enmap

Version:

A simple database wrapper to make sqlite database interactions much easier for beginners, with additional array helper methods.

10 lines 291 B
class CustomError extends Error { constructor(message, name = null) { super(); Error.captureStackTrace(this, this.constructor); this.name = name || 'EnmapError'; this.message = message; } } export default CustomError; //# sourceMappingURL=error.js.map