| java.lang.Object java.lang.Throwable java.lang.Exception javax.jbi.JBIException
All known Subclasses: javax.jbi.messaging.MessagingException, com.sun.jbi.management.system.ManagementException, com.sun.jbi.binding.proxy.connection.EventException, com.sun.jbi.management.registry.RegistryException, com.sun.jbi.framework.TimeOutException, com.sun.jbi.binding.security.MessageHandlerException, javax.jbi.management.DeploymentException, com.sun.jbi.framework.XmlParseException, com.sun.jbi.binding.security.HttpErrorResponseException, com.sun.jbi.management.repository.RepositoryException, com.sun.jbi.binding.security.InvalidConfigurationException, com.sun.jbi.framework.FrameworkWarningException,
JBIException | public class JBIException extends Exception (Code) | | JBIException is the top-level exception thrown by all JBI system
components.
author: JSR208 Expert Group |
Constructor Summary | |
public | JBIException(String aMessage) Creates a new instance of JBIException with an exception message. | public | JBIException(String aMessage, Throwable aCause) Creates a new instance of JBIException with the specified message
and cause. | public | JBIException(Throwable aCause) Creates a new instance of JBIException with the specified cause. |
JBIException | public JBIException(String aMessage)(Code) | | Creates a new instance of JBIException with an exception message.
Parameters: aMessage - String describing this exception. |
JBIException | public JBIException(String aMessage, Throwable aCause)(Code) | | Creates a new instance of JBIException with the specified message
and cause.
Parameters: aMessage - String describing this exception. Parameters: aCause - Throwable which represents an underlying problem(or null). |
JBIException | public JBIException(Throwable aCause)(Code) | | Creates a new instance of JBIException with the specified cause.
Parameters: aCause - Throwable which represents an underlying problem(or null). |
|
|