mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-15 23:32:49 +00:00
5 lines
124 B
TypeScript
5 lines
124 B
TypeScript
export class ApiError extends Error {
|
|
constructor(public statusCode: number, message: string) {
|
|
super(message);
|
|
}
|
|
}
|