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

org.xbill.DNS.config.InitializationException Maven / Gradle / Ivy

There is a newer version: 3.6.2_1
Show newest version
// SPDX-License-Identifier: BSD-2-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