for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ocsp\Exception\ResponseException;
use Ocsp\Exception\ResponseException;
/**
* Exception thrown when the response from the OCSP is "internalError".
*/
class InternalErrorException extends ResponseException
{
* Create a new instance.
*
* @return static
public static function create()
return new static('Internal error in issuer');
}