Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@adonisjs/generic-exceptions

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adonisjs/generic-exceptions

List of generic exceptions to be used in all other repos

  • 2.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.2K
decreased by-48.64%
Maintainers
1
Weekly downloads
 
Created
Source

AdonisJs Generic Exceptions 🚀

Customized exceptions for AdonisJs

[![NPM Version][npm-image]][npm-url]

This repo contains some helpful classes to throw uniform exceptions through out the application. Ofcourse you can throw exceptions using new Error() but using this package will help in throwing informative exceptions.

Setup

Install package using npm.

npm i @adonisjs/generic-exceptions

Usage

The package exports 4 different exceptions, defined as follows.

const { InvalidArgumentException } = require('@adonisjs/generic-exceptions')

const message = 'Model.create requires an object'
const status = 400
const code = 'E_INVALID_ARGUMENT'

throw new InvalidArgumentException(message, status, code)

The status must be a valid HTTP status code and code is a unique error code to recognize an exception. AdonisJs error codes starts with E_, for example: E_MISSING_CONFIG.

Available exceptions

const GE = require('@adonisjs/generic-exceptions')

new GE.InvalidArgumentException()
new GE.RuntimeException()
new GE.HttpException()
new GE.LogicalException()

Static methods

For commonly thrown exceptions, AdonisJs provides you a handful of static methods, so that you don't have to remember the error codes for those exceptions.

missingParamter(method, parameterName, position)
const { InvalidArgumentException } = require('@adonisjs/generic-exceptions')

throw InvalidArgumentException.missingParameter('model.create', 'payload', '1st')

Output

// Missing parameter payload expected by model.create method as 1st parameter

As you can see it returns a properly formatted error message by using the input values. This way we can keep all the exception messages to have same language.

invalidParameter(errorMessage, [originalValue])
throw InvalidArgumentException.invalidParameter('username must be a string', originalValue)

Output

// username must be a string instead received null
missingConfig(key, file)

Thrown when value for a given key inside configuration file is missing.

const { RuntimeException } = require('@adonisjs/generic-exceptions')

throw RuntimeException.missingConfig('mysql', 'config/database.js')

Output

mysql is not defined inside config/database.js file
missingAppKey(providerName)

Thrown when value for appKey is not defined.

throw RuntimeException.missingAppKey('Redis')

Output

Make sure to define appKey inside config/app.js file before using Redis provider
incompleteConfig(missingKeys, file)

Raised when config file and value exists, but is not complete.

const { RuntimeException } = require('@adonisjs/generic-exceptions')

throw RuntimeException.incompleteConfig(['mysql.username', 'mysql.database'], 'config/database.js')

Output

Make sure to define mysql.username, mysql.database inside config/database.js file.
invoke(message, status, [code])

Same as creating a new instance, but the default error code is used automatically.

throw InvalidArgumentException.invoke('Custom message', 500)
throw RuntimeException.invoke('Custom message', 500)

Keywords

FAQs

Package last updated on 11 May 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc