HomeSort by relevance Sort by last modified time
    Searched refs:WireParseException (Results 1 - 15 of 15) sorted by null

  /external/smack/src/org/xbill/DNS/
WireParseException.java 13 public class WireParseException extends IOException {
16 WireParseException() {
21 WireParseException(String s) {
26 WireParseException(String s, Throwable cause) {
NameTooLongException.java 12 public class NameTooLongException extends WireParseException {
DNSInput.java 50 require(int n) throws WireParseException{
52 throw new WireParseException("end of input");
147 * @throws WireParseException The end of the stream was reached.
150 readU8() throws WireParseException {
158 * @throws WireParseException The end of the stream was reached.
161 readU16() throws WireParseException {
171 * @throws WireParseException The end of the stream was reached.
174 readU32() throws WireParseException {
189 * @throws WireParseException The end of the stream was reached.
192 readByteArray(byte [] b, int off, int len) throws WireParseException {
    [all...]
ClientSubnetOption.java 125 optionFromWire(DNSInput in) throws WireParseException {
128 throw new WireParseException("unknown address family");
131 throw new WireParseException("invalid source netmask");
134 throw new WireParseException("invalid scope netmask");
139 throw new WireParseException("invalid address");
148 throw new WireParseException("invalid address", e);
153 throw new WireParseException("invalid padding");
SimpleResolver.java 181 parseMessage(byte [] b) throws WireParseException {
188 if (!(e instanceof WireParseException))
189 e = new WireParseException("Error parsing message");
190 throw (WireParseException) e;
264 throw new WireParseException("invalid DNS header - " +
279 throw new WireParseException(error);
338 throw new WireParseException(e.getMessage());
TypeBitmap.java 35 TypeBitmap(DNSInput in) throws WireParseException {
40 throw new WireParseException
44 throw new WireParseException("invalid ordering");
47 throw new WireParseException("invalid bitmap");
GPOSRecord.java 89 throw new WireParseException(e.getMessage());
107 throw new WireParseException(e.getMessage());
IPSECKEYRecord.java 117 throw new WireParseException("invalid gateway type");
145 throw new WireParseException("invalid gateway type");
APLRecord.java 134 parseAddress(byte [] in, int length) throws WireParseException {
136 throw new WireParseException("invalid address length");
157 throw new WireParseException("invalid prefix length");
LOCRecord.java 66 throw new WireParseException("Invalid LOC version");
294 parseLOCformat(int b) throws WireParseException {
298 throw new WireParseException("Invalid LOC Encoding");
EDNSOption.java 123 throw new WireParseException("truncated option");
ZoneTransferIn.java 516 parseMessage(byte [] b) throws WireParseException {
521 if (e instanceof WireParseException)
522 throw (WireParseException) e;
523 throw new WireParseException("Error parsing message");
Name.java 344 Name(DNSInput in) throws WireParseException {
355 throw new WireParseException("too many labels");
373 throw new WireParseException("bad compression");
384 throw new WireParseException("bad label type");
Record.java 85 throw new WireParseException("truncated record");
91 throw new WireParseException("invalid record length");
Message.java 122 } catch (WireParseException e) {

Completed in 761 milliseconds