com.ibm.broker.config.proxy

Class ConfigManagerProxyRequestFailureException

  • All Implemented Interfaces:
    java.io.Serializable


    public class ConfigManagerProxyRequestFailureException
    extends ConfigManagerProxyLoggedException
    An exception which states that the broker rejected a request to change its configuration.

    If the owning application has enabled synchronous property changes using the BrokerProxy.setSynchronous() method, instances of this exception can be thrown by property change methods if the request was successfully sent to the broker but the broker rejected it for any reason. The getResponseMessages() method can be used to find out more information on why the request failed.

    As an subclass of ConfigManagerProxyLoggedException, additional resolution information is included with the exception text and can be accessed using the getServiceInformation() method.

    
     Change Activity:
     -------- ----------- -------------   ------------------------------------
     Reason:  Date:       Originator:     Comments:
     -------- ----------- -------------   ------------------------------------
     53970    2009-03-27  HDMPL           v7 Release
    
     
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.util.List<LogEntry> getResponseMessages()
      Returns an unmodifiable list of LogEntry objects, each of which describes a single message that was supplied by the broker in relation to the failed request.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Method Detail

      • getResponseMessages

        public java.util.List<LogEntry> getResponseMessages()
        Returns an unmodifiable list of LogEntry objects, each of which describes a single message that was supplied by the broker in relation to the failed request.
        Returns:
        LogEntry objects associated with the request. Will be null or empty if no further information was supplied.