mirror of
				https://github.com/mashirozx/sakura.git
				synced 2025-05-29 01:49:21 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			298 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			298 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| // memo: https://learnku.com/articles/5657/laravel-exceptions-exception-and-error-handling
 | |
| 
 | |
| namespace Sakura\Lib;
 | |
| 
 | |
| use Exception as BaseException;
 | |
| 
 | |
| class Exception extends BaseException
 | |
| {
 | |
|   public function __construct($message, $code = 0)
 | |
|   {
 | |
|     parent::__construct($message, $code);
 | |
|   }
 | |
| }
 |