LdapTools\Connection\AD\ADLastErrorStrategy::getLastErrorMessage PHP 메소드

getLastErrorMessage() 공개 메소드

public getLastErrorMessage ( )
    public function getLastErrorMessage()
    {
        $extendedError = $this->getExtendedErrorNumber();
        if (array_key_exists($extendedError, ADResponseCodes::RESPONSE_MESSAGE)) {
            $message = ADResponseCodes::RESPONSE_MESSAGE[$extendedError];
        } else {
            $message = parent::getLastErrorMessage();
        }
        return $message;
    }