OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:streamError
(Results
1 - 2
of
2
) sorted by null
/external/smack/src/org/jivesoftware/smack/
XMPPException.java
23
import org.jivesoftware.smack.packet.
StreamError
;
37
* is sent to the client an XMPPException will be thrown containing the
StreamError
sent
45
private
StreamError
streamError
= null;
81
* @param
streamError
the root cause of the exception.
83
public XMPPException(
StreamError
streamError
) {
85
this.
streamError
=
streamError
;
148
* Returns the
StreamError
asscociated with this exception, or <tt>null</tt> if ther
[
all
...]
/external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java
43
import org.jivesoftware.smack.packet.
StreamError
;
697
public static
StreamError
parseStreamError(XmlPullParser parser) throws IOException,
699
StreamError
streamError
= null;
705
streamError
= new
StreamError
(parser.getName());
713
return
streamError
;
[
all
...]
Completed in 9392 milliseconds