Socket
Socket
Sign inDemoInstall

@florajs/errors

Package Overview
Dependencies
0
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @florajs/errors

Error definitions for Flora


Version published
Maintainers
3
Install size
7.75 kB
Created

Readme

Source

@florajs/errors

NPM version NPM downloads

Error definitions for Flora.

This module exposes error classes for different types of errors to be able to determine whether an error should be displayed to the client (such as AuthenticationError) or not (internal errors).

To be able to pass through the error type to clients, a code property is also set. The default error codes are listed below.

Error classes

RequestError

  • Generic request error (the user made an invalid request)
  • HTTP status code 400, the message will be displayed
  • Error code is ERR_REQUEST_ERROR

AuthenticationError

  • The user is either not authenticated, or the credentials are wrong
  • HTTP status code 401
  • Error code is ERR_AUTHENTICATION_ERROR

AuthorizationError

  • The user may be authenticated, but is not authorized for the requested action
  • HTTP status code 403
  • Error code is ERR_AUTHORIZATION_ERROR

NotFoundError

  • Either the requested resource could not be found, or a specific entity of the resource.
  • HTTP status code 404, message will be displayed
  • Error code is ERR_NOT_FOUND

GoneError

  • The requested resource is gone, e.g. was deleted
  • HTTP status code 410, message will be displayed
  • Error code is ERR_GONE

ImplementationError

  • There is a problem with the implementation, e.g. of one of the resources. This should not happen
  • HTTP status code 500
  • Error code is ERR_IMPLEMENTATION_ERROR

DataError

  • There is a problem with the data retrieved by one of the data sources
  • HTTP status code 500
  • Error code is ERR_DATA_ERROR

ConnectionError

  • There is a problem with the connection to a data source. May work on retry (e.g. temporary network problems)
  • HTTP status code 503.
  • Error code is ERR_CONNECTION_ERROR

ValidationError

  • There is a problem validating input data. This is a special case of RequestError
  • HTTP status code 400
  • Error code is ERR_VALIDATION_ERROR
  • Second parameter of constructor will be added as additional validation property.

License

MIT

Keywords

FAQs

Last updated on 03 Aug 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc