mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The server no longer has files uploaded to it. Instead it is more accurate to refer to it as dealing with "previews" of PRs.
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
// Classes
|
|
export class PreviewServerError extends Error {
|
|
// Constructor
|
|
constructor(public status: number = 500, message?: string) {
|
|
super(message);
|
|
Object.setPrototypeOf(this, PreviewServerError.prototype);
|
|
}
|
|
}
|