public class KurentoException extends RuntimeException
It's usage is intended for system-level exceptions. Usage is encouraged in the following cases:
| Constructor and Description |
|---|
KurentoException()
default constructor.
|
KurentoException(String msg)
Constructs a new runtime exception with the specified detail message.
|
KurentoException(String msg,
Throwable throwable) |
KurentoException(Throwable throwable) |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic KurentoException()
public KurentoException(String msg)
msg - the detail message. The detail message is saved for later
retrieval by the Throwable.getMessage() method.public KurentoException(String msg, Throwable throwable)
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.)public KurentoException(Throwable throwable)
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.)Copyright © 2014 Kurento. All rights reserved.