for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Skrill\Exception;
use Exception;
/**
* Class InvalidLangException.
*/
final class InvalidLangException extends Exception implements SkrillException
{
* @return InvalidLangException
public static function invalidValue(): self
return new self('Not accepted language by Skrill.');
}