net.sf.itcb.common.business.exceptions.TechnicalItcbException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of itcb-common-business Show documentation
Show all versions of itcb-common-business Show documentation
This module is the common module that must depend all the business modules.
package net.sf.itcb.common.business.exceptions;
/**
* Generic exception managing localized message
* This exception has to be extended in business module
*
* @author Pierre Le Roux
*
*/
public class TechnicalItcbException extends CommonItcbException
{
private static final long serialVersionUID = 1L;
public TechnicalItcbException(ExceptionMappingErrors exceptionMappingErrors,
String localizedMessage) {
this(exceptionMappingErrors, localizedMessage, null);
}
public TechnicalItcbException(ExceptionMappingErrors exceptionMappingErrors,
String localizedMessage, Throwable cause) {
super(exceptionMappingErrors, localizedMessage, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy