mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
12 lines
216 B
PHP
12 lines
216 B
PHP
<?php
|
|
|
|
namespace App\Exception\Provider;
|
|
|
|
class ProviderGenericErrorException extends AbstractProviderException
|
|
{
|
|
public function __construct(string $message)
|
|
{
|
|
parent::__construct($message);
|
|
}
|
|
}
|