for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ocsp\Exception;
/**
* Exception thrown when the revocation request body can't be built because there's some missing data in the certificate or in the issuer certificate.
*/
class RequestException extends Exception
{
* Create a new instance.
*
* @param string $message
* @return static
public static function create($message)
return new static($message);
}