All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.couchbase.client.core.deps.org.xbill.DNS.WireParseException Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 1999-2004 Brian Wellington ([email protected])

package com.couchbase.client.core.deps.org.xbill.DNS;

import java.io.IOException;

/**
 * An exception thrown when a DNS message is invalid.
 *
 * @author Brian Wellington
 */
public class WireParseException extends IOException {

  public WireParseException() {
    super();
  }

  public WireParseException(String s) {
    super(s);
  }

  public WireParseException(String s, Throwable cause) {
    super(s);
    initCause(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy