@@ -138,7 +138,7 @@ public function connect($username, $password) {
138
138
} elseif (in_array (self ::ENCRYPTION_PLAIN , $ this ->mechanisms )) {
139
139
$ this ->encryption = self ::ENCRYPTION_PLAIN ;
140
140
} else {
141
- throw new BoshAutoLoginConnectionException ("No encryption supported by the server is supported by this library. " );
141
+ throw new XmppPrebindConnectionException ("No encryption supported by the server is supported by this library. " );
142
142
}
143
143
144
144
$ this ->debug ($ this ->encryption , 'encryption used ' );
@@ -414,7 +414,7 @@ private function replyToChallengeResponse($challengeResponse) {
414
414
$ body = self ::getBodyFromXml ($ challengeResponse );
415
415
$ challenge = base64_decode ((string )$ body ->firstChild ->nodeValue );
416
416
if (strpos ($ challenge , 'rspauth ' ) === false ) {
417
- throw new BoshAutoLoginConnectionException ('Invalid challenge response received ' );
417
+ throw new XmppPrebindConnectionException ('Invalid challenge response received ' );
418
418
}
419
419
420
420
$ domDocument = $ this ->buildBody ();
@@ -573,7 +573,7 @@ private static function getBodyFromDomDocument($domDocument) {
573
573
/**
574
574
* Parse XML and return DOMNode of the body
575
575
*
576
- * @uses BoshAutoogin ::getBodyFromDomDocument()
576
+ * @uses XmppPrebind ::getBodyFromDomDocument()
577
577
* @param string $xml
578
578
* @return DOMNode
579
579
*/
@@ -597,6 +597,8 @@ private function getAndIncrementRid() {
597
597
}
598
598
599
599
/**
600
- * Standard BoshAutoLogin Exception
600
+ * Standard XmppPrebind Exception
601
601
*/
602
602
class XmppPrebindException extends Exception{}
603
+
604
+ class XmppPrebindConnectionException extends XmppPrebindException {}
0 commit comments