(JabberDataBlock error)
| 205 | } |
| 206 | |
| 207 | public static XmppError decodeStanzaError(JabberDataBlock error) { |
| 208 | if (!error.getTagName().equals("error")) throw new IllegalArgumentException(); |
| 209 | return decodeError(error, "urn:ietf:params:xml:ns:xmpp-stanzas"); |
| 210 | } |
| 211 | |
| 212 | public static XmppError decodeStreamError(JabberDataBlock error) { |
| 213 | if (!error.getTagName().equals("error")) throw new IllegalArgumentException(); |
no test coverage detected