org.xbill.DNS.config.InitializationException 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-3-Clause
package org.xbill.DNS.config;
public class InitializationException extends Exception {
InitializationException(String message) {
super(message);
}
InitializationException(Exception e) {
super(e);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy