Class TransactionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.kurento.commons.exception.KurentoException
org.kurento.client.TransactionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
TransactionNotCommitedException, TransactionRollbackException
public class TransactionException
extends org.kurento.commons.exception.KurentoException
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptiondefault constructor.Constructs a new runtime exception with the specified detail message.TransactionException(String msg, Throwable throwable) TransactionException(Throwable throwable) -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TransactionException
public TransactionException()default constructor. -
TransactionException
Constructs a new runtime exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.- Parameters:
msg- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
TransactionException
- Parameters:
msg- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.throwable- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
TransactionException
- Parameters:
throwable- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-