UNPKG

@dbml/cli

Version:

See our website [@dbml/cli](https://dbml.dbdiagram.io/cli/) for more information

11 lines (9 loc) 255 B
class DomainError extends Error { constructor (message, rootError = {}) { super(message); this.name = this.constructor.name; this.rootError = rootError; Error.captureStackTrace(this, this.constructor); } } export default DomainError;