![JAR search and dependency download from the Maven repository](/logo.png)
org.demoiselle.jee.configuration.exception.DemoiselleConfigurationException Maven / Gradle / Ivy
/*
* Demoiselle Framework
*
* License: GNU Lesser General Public License (LGPL), version 3 or later.
* See the lgpl.txt file in the root directory or .
*/
package org.demoiselle.jee.configuration.exception;
import org.demoiselle.jee.core.exception.DemoiselleException;
/**
*
* Main exception Demoiselle Configuration feature
*
* @author SERPRO
*/
public class DemoiselleConfigurationException extends DemoiselleException {
private static final long serialVersionUID = 1L;
public DemoiselleConfigurationException(String message) {
super(message);
}
public DemoiselleConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy