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 "malformedRequest".
*/
class MalformedRequestException extends ResponseException
{
* Create a new instance.
*
* @return static
public static function create()
return new static('Illegal confirmation request');
}