public class TransactionException
extends KurentoException
Constructor and Description |
---|
TransactionException()
default constructor.
|
TransactionException(java.lang.String msg)
Constructs a new runtime exception with the specified detail message.
|
TransactionException(java.lang.String msg,
java.lang.Throwable throwable) |
TransactionException(java.lang.Throwable throwable) |
public TransactionException()
public TransactionException(java.lang.String msg)
msg
- the detail message. The detail message is saved for later retrieval by the
#getMessage()
method.public TransactionException(java.lang.String msg, java.lang.Throwable throwable)
msg
- the detail message. The detail message is saved for later retrieval by the
#getMessage()
method.throwable
- the cause (which is saved for later retrieval by the #getCause()
method). (A
null value is permitted, and indicates that the cause is nonexistent or unknown.)public TransactionException(java.lang.Throwable throwable)
throwable
- the cause (which is saved for later retrieval by the #getCause()
method). (A
null value is permitted, and indicates that the cause is nonexistent or unknown.)