mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2025-11-20 18:41:14 +01:00
16 lines
219 B
TypeScript
16 lines
219 B
TypeScript
/**
|
|
* Custom error class for API errors
|
|
*/
|
|
export class ApiError extends Error {
|
|
status: number
|
|
|
|
constructor(message: string, status = 500) {
|
|
super(message)
|
|
this.name = "ApiError"
|
|
this.status = status
|
|
}
|
|
}
|
|
|
|
|
|
|