mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 01:53:24 +01:00
.. | ||
bld | ||
src | ||
package.json | ||
README.md |
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.