
org.xbill.DNS.TextParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of browsermob-proxy Show documentation
Show all versions of browsermob-proxy Show documentation
A programmatic HTTP/S designed for performance and functional testing
// Copyright (c) 2002-2004 Brian Wellington ([email protected])
package 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy