11 lines
No EOL
241 B
PHP
11 lines
No EOL
241 B
PHP
<?php
|
|
|
|
namespace DigiComp\HetznerDnsApi\Exception;
|
|
|
|
class UnauthorizedException extends \RuntimeException implements ClientException
|
|
{
|
|
public function __construct(string $message)
|
|
{
|
|
parent::__construct($message, 401);
|
|
}
|
|
} |