mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			224 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			224 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import HttpError from "./http_error.js";
 | 
						|
 | 
						|
class NotFoundError extends HttpError {
 | 
						|
 | 
						|
    constructor(message: string) {
 | 
						|
        super(message, 404);
 | 
						|
        this.name = "NotFoundError";
 | 
						|
    }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
export default NotFoundError;
 |