Class SapR3FCParameterException

  • All Implemented Interfaces:
    java.io.Serializable

    public class SapR3FCParameterException
    extends java.lang.Exception
    Record a problem with the parameters passed to the SapR3RfcFC class.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SapR3FCParameterException​(java.lang.String message)
      Construct exception with a context message.
      SapR3FCParameterException​(java.lang.String message, java.lang.Throwable cause)
      Construct an exception of this type with a context message and lower level exception cause.
      SapR3FCParameterException​(java.lang.Throwable cause)
      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

      • SapR3FCParameterException

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

        public SapR3FCParameterException​(java.lang.Throwable cause)
        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:
        cause - The cause of the this exception.
      • SapR3FCParameterException

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