Package com.tibco.ep.sb.ads
Class ArtifactException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.streambase.sb.StreamBaseException
com.tibco.ep.sb.ads.ArtifactException
- All Implemented Interfaces:
com.streambase.sb.util.LocatedItem
,Serializable
Artifact exception.
- Since:
- 10.2
- See Also:
-
Constructor Summary
ConstructorDescriptionArtifactException
(String message) Constructs a new exception with the specified detail message.ArtifactException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.ArtifactException
(Throwable cause) Constructs a new exception with the specified cause and a detail message of (cause==null ? -
Method Summary
Methods inherited from class com.streambase.sb.StreamBaseException
asXmlStringSingle, asXmlStringStrict, asXmlStringStrict, equals, getParams, hashCode
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ArtifactException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause. A null value is permitted.
-
ArtifactException
Constructs a new exception with the specified detail message.The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
- Parameters:
message
- the detail message
-
ArtifactException
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString())- Parameters:
cause
- the cause. A null value is permitted.
-