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:
LocatedItem
,Serializable
public class ArtifactException extends StreamBaseException
Artifact exception.- Since:
- 10.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ArtifactException(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 ? null : cause.toString())
-
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 Detail
-
ArtifactException
public ArtifactException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause. A null value is permitted.
-
ArtifactException
public ArtifactException(String message)
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
public ArtifactException(Throwable cause)
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.
-
-