mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
23 lines
517 B
PHP
23 lines
517 B
PHP
<?php
|
|
|
|
namespace Xentral\Modules\TaxdooApi\Exception;
|
|
|
|
use Throwable;
|
|
|
|
class KeyNotFoundException extends TaxdooFatalExcepion
|
|
{
|
|
/**
|
|
* @param string $message
|
|
* @param int $code
|
|
* @param Throwable|null $previous
|
|
*/
|
|
public function __construct($message = '', $code = 0, Throwable $previous = null)
|
|
{
|
|
if (empty($message)) {
|
|
$message = 'Kein Zugangsschlüssel konfiguriert';
|
|
}
|
|
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|