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 Details

    • TransactionException

      public TransactionException()
      default constructor.
    • TransactionException

      public TransactionException(String msg)
      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 the Throwable.getMessage() method.
    • TransactionException

      public TransactionException(String msg, Throwable throwable)
      Parameters:
      msg - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
      throwable - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • TransactionException

      public TransactionException(Throwable throwable)
      Parameters:
      throwable - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)