for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* NOTICE OF LICENSE
*
* Part of the Rinvex Country Package.
* This source file is subject to The MIT License (MIT)
* that is bundled with this package in the LICENSE file.
* Package: Rinvex Country Package
* License: The MIT License (MIT)
* Link: https://rinvex.com
*/
declare(strict_types=1);
namespace Rinvex\Country;
use Exception;
class CountryLoaderException extends Exception
{
/**
* Create a new exception instance.
* @return static
public static function invalidCountry()
return new static('Country code may be misspelled, invalid, or data not found on server!');
}