org.demoiselle.jee.configuration.exception.DemoiselleConfigurationValueExtractorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of demoiselle-configuration Show documentation
Show all versions of demoiselle-configuration Show documentation
Demoiselle Configuration habilita os projetos a usarem configurações em arquivos .properties, .xml ou variáveis de ambiente.
/*
* 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;
/**
*
* Exception that handles errors on extracting process
*
* @author SERPRO
*/
public class DemoiselleConfigurationValueExtractorException extends DemoiselleException {
private static final long serialVersionUID = 1L;
public DemoiselleConfigurationValueExtractorException(String message) {
super(message);
}
public DemoiselleConfigurationValueExtractorException(String message, Throwable cause) {
super(message, cause);
}
}