Package com.basis.bbj.bridge
Class BBjBridgeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.basis.bbj.bridge.BBjBridgeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BBjBridgeException.BBjBridgeClosedException
An Exception type used in bridge package.
- See Also:
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionCreates new BBjBridgeException.BBjBridgeException
(Exception p_other) Constructor of BBjBridgeException from some other Exception.BBjBridgeException
(String p_message) Construct a BBjBridgeException with a specified message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BBjBridgeException
public BBjBridgeException()Creates new BBjBridgeException. -
BBjBridgeException
Construct a BBjBridgeException with a specified message.- Parameters:
p_message
- Message of the exception.
-
BBjBridgeException
Constructor of BBjBridgeException from some other Exception. The message of p_other is copied into the message of the new BBjBridgeException.- Parameters:
p_other
- The exception whose message is being copied.
-