com.arjuna.ats.jta.exceptions.InvalidTerminationStateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of narayana-jta Show documentation
Show all versions of narayana-jta Show documentation
Narayana: ArjunaJTA narayana-jta (jta uber jar)
The newest version!
/*
Copyright The Narayana Authors
SPDX-License-Identifier: Apache-2.0
*/
package com.arjuna.ats.jta.exceptions;
/**
* Exception may be thrown under certain circumstances. Typically
* this is when an action has been attempted, the state of
* the transaction is invalid for that action and JTA has reserved
* IllegalStateException to mean something else entirely that we
* can't use!
*
* @author Mark Little ([email protected])
* @version $Id: NotImplementedException.java 2342 2006-03-30 13:06:17Z $
* @since JTS 1.2.4.
*/
public class InvalidTerminationStateException extends IllegalStateException
{
static final long serialVersionUID = 2194094002071886192L;
public InvalidTerminationStateException ()
{
super();
}
public InvalidTerminationStateException (String s)
{
super(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy