34 lines
		
	
	
	
		
			710 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			710 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * SPDX-FileCopyrightText: 2024 Sascha Nitsch (grumpydeveloper) https://contentnation.net/@grumpydevelop
 | |
|  * SPDX-License-Identifier: GPL-3.0-or-later
 | |
|  *
 | |
|  * @author Sascha Nitsch (grumpydeveloper)
 | |
|  */
 | |
| 
 | |
| namespace Federator\Exceptions;
 | |
| 
 | |
| /**
 | |
|  * File not found exceptions
 | |
|  */
 | |
| class FileNotFound extends Exception
 | |
| {
 | |
|     /**
 | |
|      * constructor
 | |
|      * @param ?string $message optional error message
 | |
|      */
 | |
|     public function __construct($message = null)
 | |
|     {
 | |
|         $this->message = ($message === null) ? "filenotfound" : $message;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * {@inheritDoc}
 | |
|      * @see \Exceptions\Exception::getRetCode()
 | |
|      */
 | |
|     public function getRetCode() : int
 | |
|     {
 | |
|         return 404;
 | |
|     }
 | |
| }
 | 
