for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Rinvex\Language;
use Exception;
class LanguageLoaderException extends Exception
{
/**
* Create a new exception instance.
*
* @return static
*/
public static function invalidLanguage()
return new static('Language code may be misspelled, invalid, or data not found on server!');
}