Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

119
Vistas
Make error inside `try` not handled by `catch`

I want the specific errors that are thrown inside try block not to be handled by catch(err)

Example:

const someFunc = async () => {
  ...
  try {
    ...
    // This error should not be handled by the catch and go straight to the middleware
    throw {
      status: 404,
      message: "Not Found",
    };
  } catch (error) {
    throw {
      status: 500,
      message: "Something went wrong",
      reason: error,
    };
  }
};

After that the middleware handles the errors.

export const errorHandler: ErrorRequestHandler = (err, req, res, next) => {
  const { status = 500, message, reason } = err;
  res.status(status).json({
    success: false,
    message: message || "Something went wrong",
    reason: reason || undefined,
  });
};
about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

If you throw an error inside a try-block, the catch will catch it. The best you can do is to check in the catch-block if the error you don't want to catch is thrown and if so, rethrow it.

const someFunc = async () => {
  try {
    throw {
      status: 404,
      message: "Not Found",
    };
  } catch (error) {
    // If a 404 error is caught, rethrow it.
    if (error.status === 404) {
      throw error;
    }

    throw {
      status: 500,
      message: "Something went wrong",
      reason: error,
    };
  }
};
about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda