hetzner-dns-api/generated/Exception/UnauthorizedException.php

11 lines
241 B
PHP
Raw Permalink Normal View History

2023-01-05 12:55:52 +01:00
<?php
namespace DigiComp\HetznerDnsApi\Exception;
class UnauthorizedException extends \RuntimeException implements ClientException
{
public function __construct(string $message)
{
parent::__construct($message, 401);
}
}