Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
errors.js 145 B
export class NotFoundError extends Error {
  constructor (message, options) {
    super(message, options)
    this.status = options.status
  }
}