mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
// Classes
|
|
export class UploadError extends Error {
|
|
// Constructor
|
|
constructor(public status: number = 500, message?: string) {
|
|
super(message);
|
|
Object.setPrototypeOf(this, UploadError.prototype);
|
|
}
|
|
}
|