“Error de lanzamiento de JS” Código de respuesta

Error de lanzamiento de JS

throw new Error('Whoops!')
gaz_edge

JavaScript cómo aumentar el error

  if (..condition..) {
    throw 'Error message';
  }
Smiling Stoat

Error de lanzamiento de Node JS

FactoryController.prototype.create = function (callback) {
    //The throw is working, and the exception is returned.
    throw new Error('An error occurred'); //outside callback 
    try {
        this.check(function (check_result) {
            callback(check_result);
        });
    } catch (ex) {
        throw new Error(ex.toString());
    }
}

FactoryController.prototype.create = function (callback) {
    try {
        this.check(function (check_result) {
            //The throw is not working on this case to return the exception to the caller(parent)
            throw new Error('An error occurred'); //inside callback 
        });
    } catch (ex) {
        throw new Error(ex.toString());
    }
}
Helpless Hoopoe

JavaScript intent

var someNumber = 1;
try {
  someNumber.replace("-",""); //You can't replace a int
} catch(err) {
 console.log(err);
}
Grepper

Cómo atrapar y lanzar errores JS

try {
  throw new Error('Whoops!')
} catch (e) {
  console.error(e.name + ': ' + e.message)
}
Relieved Ratel

tirar un nuevo error (

try {
  throw new Error('Whoops!')
} catch (e) {
  console.error(e.name + ': ' + e.message)
}
BoomSlang Frikkie

Respuestas similares a “Error de lanzamiento de JS”

Preguntas similares a “Error de lanzamiento de JS”

Más respuestas relacionadas con “Error de lanzamiento de JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código