11 lines
225 B
PHP
11 lines
225 B
PHP
|
<?php
|
||
|
|
||
|
namespace DigiComp\HetznerDnsApi\Exception;
|
||
|
|
||
|
class ValidateZoneFilePlainUnauthorizedException extends UnauthorizedException
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
parent::__construct('Unauthorized');
|
||
|
}
|
||
|
}
|