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

org.apfloat.ApfloatConfigurationException Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show newest version
package org.apfloat;

/**
 * Exception indicating an error in the apfloat configuration.

* * @since 1.5 * @version 1.5 * @author Mikko Tommila */ public class ApfloatConfigurationException extends ApfloatRuntimeException { /** * Constructs a new apfloat configuration exception with an empty detail message. */ public ApfloatConfigurationException() { } /** * Constructs a new apfloat configuration exception with the specified detail message. * * @param message The detail message. */ public ApfloatConfigurationException(String message) { super(message); } /** * Constructs a new apfloat configuration exception with the specified detail message and cause. * * @param message The detail message. * @param cause Originating cause of the exception. */ public ApfloatConfigurationException(String message, Throwable cause) { super(message, cause); } private static final long serialVersionUID = -7022924635011038776L; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy