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