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

online.sanen.cdm.template.DataRetrievalFailureException Maven / Gradle / Ivy

package online.sanen.cdm.template;

/**
 * Exception thrown if certain expected data could not be retrieved, e.g. when
 * looking up specific data via a known identifier. This exception will be
 * thrown either by O/R mapping tools or by DAO implementations.
 *
 * @author LazyToShow 
* Date: 2018年10月15日
* Time: 下午4:38:18 */ @SuppressWarnings("serial") public class DataRetrievalFailureException extends DataAccessException { /** * Constructor for DataRetrievalFailureException. * * @param msg the detail message */ public DataRetrievalFailureException(String msg) { super(msg); } /** * Constructor for DataRetrievalFailureException. * * @param msg the detail message * @param cause the root cause from the data access API in use */ public DataRetrievalFailureException(String msg, Throwable cause) { super(msg, cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy