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

org.canedata.exception.DataAccessException Maven / Gradle / Ivy

Go to download

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy