Package Exports
- extendable-error
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (extendable-error) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Extendable Error 
A simple abstract extendable error class that extends Error
, which handles the error name
, message
and stack
property.
Install
npm install extendable-error --save
Usage
import ExtendableError from 'extendable-error';
class SomeError extends ExtendableError {
constructor(
message: string,
public code: number
) {
super(message);
}
}
let someError = new SomeError('Some error', 0x0001);
License
MIT License.