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

11 lines
237 B
PHP
Raw Normal View History

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