mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 21:45:55 +00:00
14 lines
233 B
PHP
14 lines
233 B
PHP
<?php
|
|
|
|
namespace App\Client\Exceptions;
|
|
|
|
class InvalidServerProvided extends \Exception
|
|
{
|
|
public function __construct($server)
|
|
{
|
|
$message = "No such server {$server}.";
|
|
|
|
parent::__construct($message);
|
|
}
|
|
}
|