“Пользовательская ошибка JS” Ответ

Пользовательская ошибка JS

class Testing extends Error {
  constructor(message) {
    super(message);
    this.name = this.constructor.name;
    this.message = message;
    Error.captureStackTrace(this, this.constructor);
  }
}
Restu Wahyu Saputra

JS бросает пользовательскую ошибку

class CustomError extends Error {
  constructor(foo = 'bar', ...params) {
    // Pass remaining arguments (including vendor specific ones) to parent constructor
    super(...params)

    // Maintains proper stack trace for where our error was thrown (only available on V8)
    if (Error.captureStackTrace) {
      Error.captureStackTrace(this, CustomError)
    }

    this.name = 'CustomError'
    // Custom debugging information
    this.foo = foo
    this.date = new Date()
  }
}

try {
  throw new CustomError('baz', 'bazMessage')
} catch(e) {
  console.error(e.name)    //CustomError
  console.error(e.foo)     //baz
  console.error(e.message) //bazMessage
  console.error(e.stack)   //stacktrace
}
Busy Bee

Ответы похожие на “Пользовательская ошибка JS”

Вопросы похожие на “Пользовательская ошибка JS”

Больше похожих ответов на “Пользовательская ошибка JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования