Skip to content

Repository files navigation

HTTP Error

JavaScript Style GuideCircleCI

This module expose an error to be thrown for http projects

Install

$ npm install http-error

Error properties

  • code: Represents an internal error code, defaults into an empty string
  • message: Represents a human-readable message explaining the situation, defaults into an empty string
  • statusCode: Represent a HTTP status code, defaults to 400

Usage

constHttpError=require('http-error')thrownewHttpError()// you will get: code = '', message = '', status = 400thrownewHttpError('PRODUCT_NOT_EXISTS')// you will get: code = 'PRODUCT_NOT_EXISTS', message = '', status = 400thrownewHttpError('PRODUCT_NOT_EXISTS','The product you are trying to see does not exists')// you will get: code = 'PRODUCT_NOT_EXISTS', message = 'The product you are trying to see does not exists', status = 400thrownewHttpError('PRODUCT_NOT_EXISTS','The product you are trying to see does not exists',404)// you will get: code = 'PRODUCT_NOT_EXISTS', message = 'The product you are trying to see does not exists', status = 404

About

HTTP error

Topics

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages