for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SimpleSAML\XMLSecurity\Exception;
/**
* Class UnsupportedAlgorithmException
*
* This exception is thrown when we can't handle a given algorithm
* @package simplesamlphp/xml-security
*/
class UnsupportedAlgorithmException extends RuntimeException
{
* @param string $message
public function __construct(string $message = 'Unsupported algorithm.')
parent::__construct($message);
}