@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
16 lines • 1.12 kB
TypeScript
export { BadFunctionCallException } from './exceptions/bad-function-call.exception';
export { BadMethodCallException } from './exceptions/bad-method-call.exception';
export { BaseException } from './exceptions/base.exception';
export { DomainException } from './exceptions/domain.exception';
export { IgnorableException } from './exceptions/ignorable.exception';
export { InvalidArgumentException } from './exceptions/invalid-argument.exception';
export { LengthException } from './exceptions/length.exception';
export { LogicException } from './exceptions/logic.exception';
export { OutOfBoundsException } from './exceptions/out-of-bounds.exception';
export { OutOfRangeException } from './exceptions/out-of-range.exception';
export { OverflowException } from './exceptions/overflow.exception';
export { RangeException } from './exceptions/range.exception';
export { RuntimeException } from './exceptions/runtime.exception';
export { UnderflowException } from './exceptions/underflow.exception';
export { UnexpectedValueException } from './exceptions/unexpected-value.exception';
//# sourceMappingURL=index.d.ts.map