SimpleSAML\Module\saml\Error\NoAvailableIDP::__construct PHP Method

__construct() public method

NoAvailableIDP error constructor.
public __construct ( string $responsible, string | null $message = null, Exception $cause = null )
$responsible string A string telling who is responsible for this error. Can be one of the following: - \SAML2\Constants::STATUS_RESPONDER: in case the error is caused by this SAML responder. - \SAML2\Constants::STATUS_REQUESTER: in case the error is caused by the SAML requester.
$message string | null A short message explaining why this error happened.
$cause Exception An exception that caused this error.
    public function __construct($responsible, $message = null, \Exception $cause = null)
    {
        parent::__construct($responsible, Constants::STATUS_NO_AVAILABLE_IDP, $message, $cause);
    }
NoAvailableIDP