for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SimpleSAML\XMLSecurity\Exception;
/**
* Class SignatureValidationFailedException
*
* This exception is thrown when we can't validate the signature for a given DOMDocument or DOMElement.
* @package SimpleSAML\XMLSecurity\Exception
*/
class SignatureValidationFailedException extends RuntimeException
{
* @param string|null $message
public function __construct(?string $message = null)
parent::__construct($message ?: 'Signature validation failed.');
}