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

org.xillium.data.persistence.DataPersistenceException Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.xillium.data.persistence;


/**
 * Data persistence exception.
 */
public class DataPersistenceException extends org.xillium.data.DataException {
    public DataPersistenceException() {
    }

    public DataPersistenceException(String message) {
        super(message);
    }

    public DataPersistenceException(Throwable cause) {
        super(cause);
    }

    public DataPersistenceException(String message, Throwable cause) {
        super(message, cause);
    }

    private static final long serialVersionUID = -4791404464647658951L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy