org.canedata.exception.DataAccessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cane-api Show documentation
Show all versions of cane-api Show documentation
Cane is based on the coding behaviour analysis of data manipulation interface to allow coders are close
to their habit of thinking of ways to manipulate the data. API definition for Cane.
The newest version!
package org.canedata.exception;
public class DataAccessException extends RuntimeException {
private static final long serialVersionUID = -1482548993264902769L;
public DataAccessException() {
super();
}
public DataAccessException(String message, Throwable cause) {
super(message, cause);
}
public DataAccessException(String message) {
super(message);
}
public DataAccessException(Throwable cause) {
super(cause);
}
}