1 import { CustomError } from './custom-error'; 2 3 export class ConnectionTimeoutError extends CustomError { 4 private static ERROR_MESSAGE = 'Connection timeout.'; 5 6 constructor() { 7 super(ConnectionTimeoutError.ERROR_MESSAGE); 8 this.code = 504; 9 this.userMessage = ConnectionTimeoutError.ERROR_MESSAGE; 10 } 11 }