for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ZfrCors\Exception;
use DomainException;
/**
* @license MIT
* @author Max Bösing <[email protected]>
*/
class InvalidOriginException extends DomainException implements ExceptionInterface
{
* @return self
public static function fromInvalidHeaderValue()
return new self('Provided header value supposed to be invalid.');
}