Package com.tibco.ep.tcs.runtime
Class TCSRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.tibco.ep.tcs.runtime.TCSRuntimeException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FlowValidationProblemList.FlowValidationException
public class TCSRuntimeException extends Exception
The base class of all TIBCO Cloud Streaming runtime exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TCSRuntimeException(String message)
Create a new exception with specified message.TCSRuntimeException(String message, Throwable cause)
Create a new exception with specified message and cause.TCSRuntimeException(Throwable cause)
Create a new exception with specified cause and no message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
The exception in string form.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
TCSRuntimeException
public TCSRuntimeException(String message)
Create a new exception with specified message.
- Parameters:
message
- the message, null becomes the empty string
-
TCSRuntimeException
public TCSRuntimeException(String message, Throwable cause)
Create a new exception with specified message and cause.
- Parameters:
message
- the message, null becomes the empty stringcause
- the cause
-
TCSRuntimeException
public TCSRuntimeException(Throwable cause)
Create a new exception with specified cause and no message.
- Parameters:
cause
- the cause
-
-
Method Detail
-
toString
public String toString()
The exception in string form. Unlike JRE exceptions, the return value does not contain the class name, making it identical to
Throwable.getMessage()
.
-
-