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

net.anotheria.anoprise.dataspace.DataspacePersistenceFailedException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 4.0.0
Show newest version
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