net.anotheria.anoprise.dataspace.DataspacePersistenceFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ano-prise Show documentation
Show all versions of ano-prise Show documentation
Collection of utils for different enterprise class projects. Among other stuff contains
Caches, Mocking, DualCrud, MetaFactory and SessionDistributorService. Visit https://opensource.anotheria.net for details.
package net.anotheria.anoprise.dataspace;
import net.anotheria.anoprise.dataspace.persistence.DataspacePersistenceServiceException;
/**
* Dataspace exception used in DataspaceService. Throwed on persistence fail.
*
* @author lrosenberg
*/
public class DataspacePersistenceFailedException extends DataspaceServiceException {
/**
* Basic serialVersionUID variable.
*/
private static final long serialVersionUID = 3741636668816215786L;
/**
* Public constructor.
*
* @param cause
* - exception cause
*/
public DataspacePersistenceFailedException(DataspacePersistenceServiceException cause) {
super("Dataspace Persistence Failed: " + cause.getMessage(), cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy