org.xbill.DNS.lookup.LookupFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.dnsjava
Show all versions of org.apache.servicemix.bundles.dnsjava
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
// SPDX-License-Identifier: BSD-2-Clause
package org.xbill.DNS.lookup;
import org.xbill.DNS.Name;
/** A base class for all types of things that might fail when making a DNS lookup. */
public class LookupFailedException extends RuntimeException {
private final Name name;
private final int type;
public LookupFailedException() {
this(null, null);
}
public LookupFailedException(String message) {
this(message, null);
}
LookupFailedException(String message, Throwable inner) {
super(message, inner);
name = null;
type = 0;
}
/**
* Construct a LookupFailedException that also specifies the name and type of the lookup that
* failed.
*
* @param name the name that caused the failure.
* @param type the type that caused the failure.
*/
public LookupFailedException(Name name, int type) {
this.name = name;
this.type = type;
}
/** Gets the Name being looked up when this failure occurred. */
public Name getName() {
return name;
}
/** Gets the {@link org.xbill.DNS.Type} being looked up when this failure occurred. */
public int getType() {
return type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy