@blackglory/errors
v3.0.3
Published
Common errors
Downloads
39,606
Readme
errors
Common errors.
Install
npm install --save @blackglory/errors
# or
yarn add @blackglory/errors
API
type CustomErrorConstructor<T extends CustomError = CustomError> =
new (message?: string) => T
interface SerializableError {
name: string
message: string
stack: string | null
ancestors: string[]
}
CustomError
class CustomError extends Error {}
CustomError
has better default behaviors than Error
:
console.error
prints the correct exception name, notError
.instanceof
operator matches based on names rather than inheritance relationships, which helpsSerializableError instanceof CustomError
.
AssertionError
class AssertionError extends CustomError {}
isError
function isError(val: unknown): val is Error
function isntError<T>(val: T): val is Exclude<T, Error>
normalize
function normalize(err: Error): SerializableError
hydrate
function hydrate(err: SerializableError): Error
isSerializableError
function isSerializableError(val: unknown): val is SerializableError
assert
/**
* @throws {AssertionError}
*/
function assert(condition: unknown, message?: string): asserts condition
getErrorNames
function getErrorNames(err: Error | SerializableError): Iterable<string>
traverseErrorPrototypeChain
function traverseErrorPrototypeChain(err: Error): Iterable<Error>