mirror of
				https://github.com/phpbb/phpbb.git
				synced 2025-10-29 06:26:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			345 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			345 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
| *
 | |
| * @package extension
 | |
| * @copyright (c) 2012 phpBB Group
 | |
| * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
 | |
| *
 | |
| */
 | |
| 
 | |
| namespace phpbb\extension;
 | |
| 
 | |
| /**
 | |
|  * Exception class for metadata
 | |
|  */
 | |
| class exception extends \UnexpectedValueException
 | |
| {
 | |
| 	public function __toString()
 | |
| 	{
 | |
| 		return $this->getMessage();
 | |
| 	}
 | |
| }
 |