se.l4.silo.StorageTransactionException Maven / Gradle / Ivy
The newest version!
package se.l4.silo;
/**
* Exception thrown when an issue with a {@link Transaction} has been detected.
* When such an exception is encountered the transaction may be retried.
*
* @author Andreas Holstenson
*
*/
public class StorageTransactionException
extends StorageException
{
private static final long serialVersionUID = 5892740863745544304L;
public StorageTransactionException(String message, Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy