summaryrefslogtreecommitdiff
path: root/src/utils/exception.ts
blob: 04720030bbeb8ecbec752c0ffba9b9d61ba106d3 (plain)
1
2
3
4
5
6
7
8
9
export class NotImplementedError extends Error {}

export class UnknownSymbolError extends Error {}

export class InvalidStateError extends Error {}

export class BadArgumentError extends Error {}

export class InvalidType extends Error {}