Class WebserviceException

  • All Implemented Interfaces:
    java.io.Serializable

    public class WebserviceException
    extends java.lang.Exception
    An exception that can be thrown by webservices published by the Mendix application and webservice calls by the Mendix application. This exception can be thrown in custom java actions handling a published webservice call to show a custom soap fault. In the constructor, use the public field clientFaultCode or serverFaultCode to indicate a client or server error.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      WebserviceException​(java.lang.String faultCode, java.lang.String faultString)
      Creates a new WebserviceException.
      WebserviceException​(java.lang.String faultCode, java.lang.String faultString, java.lang.Throwable cause)
      Creates a new WebserviceException.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDetail()
      Gets the detail.
      java.lang.String getFaultActor()
      Gets the fault actor.
      java.lang.String getFaultCode()
      Gets the fault code.
      java.lang.String getFaultString()
      Gets the fault string.
      void setDetail​(java.lang.String detail)
      Sets the detail.
      void setFaultActor​(java.lang.String faultActor)
      Sets the fault actor.
      • 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

      • WebserviceException

        public WebserviceException​(java.lang.String faultCode,
                                   java.lang.String faultString)
        Creates a new WebserviceException.
        Parameters:
        faultCode - the fault code
        faultString - the fault string
      • WebserviceException

        public WebserviceException​(java.lang.String faultCode,
                                   java.lang.String faultString,
                                   java.lang.Throwable cause)
        Creates a new WebserviceException.
        Parameters:
        faultCode - the fault code
        faultString - the fault string
        cause - the cause
    • Method Detail

      • getFaultCode

        public final java.lang.String getFaultCode()
        Gets the fault code.
        Returns:
        the faultCode
      • getFaultString

        public final java.lang.String getFaultString()
        Gets the fault string.
        Returns:
        the faultString
      • getFaultActor

        public java.lang.String getFaultActor()
        Gets the fault actor.
        Returns:
        the fault actor
      • setFaultActor

        public void setFaultActor​(java.lang.String faultActor)
        Sets the fault actor.
        Parameters:
        faultActor - the fault actor to set
      • getDetail

        public java.lang.String getDetail()
        Gets the detail.
        Returns:
        the detail
      • setDetail

        public void setDetail​(java.lang.String detail)
        Sets the detail.
        Parameters:
        detail - the detail to set