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