mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
68bfe686d8
The server no longer has files uploaded to it. Instead it is more accurate to refer to it as dealing with "previews" of PRs.
9 lines
228 B
TypeScript
9 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);
|
|
}
|
|
}
|