mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-27 20:14:57 +02:00
14 lines
265 B
TypeScript
14 lines
265 B
TypeScript
export class NetworkError extends Error {
|
|
constructor (message: string) {
|
|
super(message)
|
|
this.name = 'NetworkError'
|
|
}
|
|
}
|
|
|
|
export class BillingError extends Error {
|
|
constructor (message: string) {
|
|
super(message)
|
|
this.name = 'BillingError'
|
|
}
|
|
}
|