Class ConnectorMethodException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConnectorMethodException
    extends UserRegistryConnectorException
    ConnectorMethodException Exception type for SAP R/3 User Registry Connector. Thrown by concrete impls of ConnectorMethod to indicate method execution exceptions.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ConnectorMethodException​(java.lang.String msg)
      Construct exception with a context message.
      ConnectorMethodException​(java.lang.String msg, java.lang.Throwable root)
      Construct an exception of this type with a context message and lower level exception cause.
      ConnectorMethodException​(java.lang.Throwable root)
      Construct an exception of this type as result of another lower level exception.
    • Method Summary

      • 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

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ConnectorMethodException

        public ConnectorMethodException​(java.lang.String msg)
        Construct exception with a context message.
        Parameters:
        msg - The message text. This text should ideally be retrieved from an I18N message bundle.
      • ConnectorMethodException

        public ConnectorMethodException​(java.lang.Throwable root)
        Construct an exception of this type as result of another lower level exception. The message of this exception will be adopted from the root exception.
        Parameters:
        root - The cause of the this exception.
      • ConnectorMethodException

        public ConnectorMethodException​(java.lang.String msg,
                                        java.lang.Throwable root)
        Construct an exception of this type with a context message and lower level exception cause.
        Parameters:
        msg - The message text. This text should ideally be retrieved from an I18N message bundle.
        root - The cause of the this exception.