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);
 | |
|   }
 | |
| }
 |