Class ArcGISRuntimeException

    • Field Detail

      • ERROR_CODE_CHECK_CAUSE

        public static final int ERROR_CODE_CHECK_CAUSE
        An error code that indicates that further error information are provided in getCause(). Example:
           Throwable cause = null;
           if (arcGISRuntimeException.getErrorCode() == ArcGISRuntimeException.ERROR_CODE_CHECK_CAUSE) {
             cause = arcGISRuntimeException.getCause();
           }
         
        Since:
        100.0.0
    • Method Detail

      • getErrorCode

        public int getErrorCode()
        Gets an integer error code for this ArcGISRuntimeException. The error code is unique only within this ArcGISRuntimeException's error domain, see getErrorDomain().
        Returns:
        the error code
        Since:
        100.0.0
      • getAdditionalMessage

        public String getAdditionalMessage()
        Gets a string with additional information about the error.
        Returns:
        a string with additional information about the error
        Since:
        100.0.0