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