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

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

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

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

import java.io.IOException;

/**
 * An exception thrown when unable to parse text.
 *
 * @author Brian Wellington
 */
public class TextParseException extends IOException {

  public TextParseException() {
    super();
  }

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

  /** @since 3.5 */
  public TextParseException(String name, String message) {
    super("'" + name + "': " + message);
  }

  /** @since 3.5 */
  public TextParseException(String name, String message, Exception inner) {
    super("'" + name + "': " + message, inner);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy