11 lines
No EOL
245 B
PHP
11 lines
No EOL
245 B
PHP
<?php
|
|
|
|
namespace DigiComp\HetznerDnsApi\Exception;
|
|
|
|
class CreatePrimaryServerUnprocessableEntityException extends UnprocessableEntityException
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('Unprocessable entity');
|
|
}
|
|
} |