Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Exceptions/Service/Allocation/CidrOutOfRangeException.php
10280 views
1
<?php
2
3
namespace Pterodactyl\Exceptions\Service\Allocation;
4
5
use Pterodactyl\Exceptions\DisplayException;
6
7
class CidrOutOfRangeException extends DisplayException
8
{
9
/**
10
* CidrOutOfRangeException constructor.
11
*/
12
public function __construct()
13
{
14
parent::__construct(trans('exceptions.allocations.cidr_out_of_range'));
15
}
16
}
17
18