| Current Path : /var/www/invoice-sync.bitkit.dk/httpdocs/app/Exceptions/ |
| Current File : /var/www/invoice-sync.bitkit.dk/httpdocs/app/Exceptions/InvoiceNotFoundException.php |
<?php
namespace App\Exceptions;
use Throwable;
class InvoiceNotFoundException extends EconomicException
{
public function __construct($message, $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}