mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:37:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			344 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			344 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Exceptions;
 | 
						|
 | 
						|
use Exception;
 | 
						|
 | 
						|
class PaymentFailed extends Exception
 | 
						|
{
 | 
						|
    public function report()
 | 
						|
    {
 | 
						|
        // ..
 | 
						|
    }
 | 
						|
 | 
						|
    public function render($request)
 | 
						|
    {
 | 
						|
        return render('gateways.unsuccessful', [
 | 
						|
            'message' => $this->getMessage(),
 | 
						|
            'code' => $this->getCode(),
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
}
 |