ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f87
Auth_OpenID_ServerErrorContainer Class Reference
+ Collaboration diagram for Auth_OpenID_ServerErrorContainer:

Public Member Functions

 Auth_OpenID_ServerErrorContainer ($error_text, $error_code, $message)
 

Static Public Member Functions

static fromMessage ($message)
 private More...
 

Detailed Description

Definition at line 2157 of file Consumer.php.

Member Function Documentation

◆ Auth_OpenID_ServerErrorContainer()

Auth_OpenID_ServerErrorContainer::Auth_OpenID_ServerErrorContainer (   $error_text,
  $error_code,
  $message 
)

Definition at line 2158 of file Consumer.php.

2161  {
2162  $this->error_text = $error_text;
2163  $this->error_code = $error_code;
2164  $this->message = $message;
2165  }

◆ fromMessage()

static Auth_OpenID_ServerErrorContainer::fromMessage (   $message)
static

private

Definition at line 2170 of file Consumer.php.

References Auth_OpenID_OPENID_NS.

Referenced by Auth_OpenID_GenericConsumer\_httpResponseToMessage().

2171  {
2172  $error_text = $message->getArg(
2173  Auth_OpenID_OPENID_NS, 'error', '<no error message supplied>');
2174  $error_code = $message->getArg(Auth_OpenID_OPENID_NS, 'error_code');
2175  return new Auth_OpenID_ServerErrorContainer($error_text,
2176  $error_code,
2177  $message);
2178  }
const Auth_OpenID_OPENID_NS
Definition: Message.php:42
Auth_OpenID_ServerErrorContainer($error_text, $error_code, $message)
Definition: Consumer.php:2158
+ Here is the caller graph for this function:

The documentation for this class was generated from the following file: