20 lines
		
	
	
		
			388 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			388 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?PHP
 | 
						|
declare(strict_types = 1);
 | 
						|
 | 
						|
/**
 | 
						|
 * Exception thrown in case the main entity of a page (e.g. an object, an institution etc.)
 | 
						|
 * are not set public.
 | 
						|
 */
 | 
						|
final class MDhttpFailedException extends Exception {
 | 
						|
    /**
 | 
						|
     * Error message.
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function errorMessage() {
 | 
						|
        //error message
 | 
						|
        return 'Inputs are not valid.';
 | 
						|
 | 
						|
    }
 | 
						|
}
 |