@mtsmachado8/errors
v0.0.4
Published
A error package for dealing with all mtsmachado8's errors both on backend and frontend
Downloads
2
Readme
Errors
Módulo usado para Erros da Api
Usage CJS
const AuthenticationFailed = require('@mtsmachado8/errors/authentication-failed-401');
throw new AuthenticationFailed();this will throw a 401 error with a default message or
const AuthenticationFailed = require('@mtsmachado8/errors/authentication-failed-401');
throw new AuthenticationFailed('My custom AuthenticationFailed message');Usage ESM
import AuthenticationFailed from '@mtsmachado8/errors/authentication-failed-401';
throw new AuthenticationFailed();this will throw a 401 error with a default message or
import AuthenticationFailed from '@mtsmachado8/errors/authentication-failed-401';
throw new AuthenticationFailed('My custom AuthenticationFailed message');