1.0.0 • Published 8 years ago

missing-dependency-error v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

missing-dependency-error

A simple extension of the JavaScript Error object (read on MDN) to be thrown when a dependency isn't provided.

Installation

npm install missing-dependency-error

Usage

import MissingDependencyError from "missing-dependency-error";

let err = new MissingDependencyError("SomeDependency");

The above example will create a MissingDependencyError object with the message:

Missing dependency: SomeDependency

License

This is licensed under the MIT license. See the LICENSE file for more information.