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

public class BBjBridgeException extends Exception
An Exception type used in bridge package.
See Also:
  • Constructor Details

    • BBjBridgeException

      public BBjBridgeException()
      Creates new BBjBridgeException.
    • BBjBridgeException

      public BBjBridgeException(String p_message)
      Construct a BBjBridgeException with a specified message.
      Parameters:
      p_message - Message of the exception.
    • BBjBridgeException

      public BBjBridgeException(Exception p_other)
      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.