public class DataAccessException
General runtime Exception used to rethrow checked exceptions. It adds a bit of intelligence in that it adds an errorCode and state which it stored based on the wrapped exception (see SQL exception) User: julian3 Date: 2013/11/10 Time: 7:15 PM PROJECT: ${PROJECT} DESCRIPTION: Code Borrowed from http://java.dzone.com/articles/adding-java-8-lambda-goodness Original package can be downloaded from https://github.com/jexenberger/lambda-tuples
public DataAccessException()
public DataAccessException(java.lang.String message)
public DataAccessException(java.lang.String message,
java.lang.Throwable cause)
public DataAccessException(java.lang.Throwable cause)
public DataAccessException(java.lang.String message,
java.lang.Throwable cause,
boolean enableSuppression,
boolean writableStackTrace)