Class ProcessingException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ProcessingException
    extends java.lang.RuntimeException
    implements java.io.Serializable
    Defines the processing exception.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected ProcessingException​(boolean abortProcessing)
      Default constructor for ProcessingException.
        ProcessingException​(java.lang.String message, boolean abortProcessing)
      Constructor for ProcessingException.
        ProcessingException​(java.lang.String message, java.lang.Throwable throwable, boolean abortProcessing)
      Constructor for ProcessingException.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean abortProcessing()
      Abort the processing
      void setAbortProcessing​(boolean abortProcessing)
      Set abort the processing
      • 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

      • ProcessingException

        protected ProcessingException​(boolean abortProcessing)

        Default constructor for ProcessingException.

        Parameters:
        abortProcessing - true to abort the processing; false to continue the processing
      • ProcessingException

        public ProcessingException​(java.lang.String message,
                                   boolean abortProcessing)

        Constructor for ProcessingException.

        Parameters:
        message - the message
        abortProcessing - true to abort the processing; false to continue the processing
      • ProcessingException

        public ProcessingException​(java.lang.String message,
                                   java.lang.Throwable throwable,
                                   boolean abortProcessing)

        Constructor for ProcessingException.

        Parameters:
        message - the message
        throwable - the throwable
        abortProcessing - true to abort the processing; false to continue the processing
    • Method Detail

      • abortProcessing

        public boolean abortProcessing()
        Abort the processing
        Returns:
        true to abort the processing; false to continue the processing
      • setAbortProcessing

        public void setAbortProcessing​(boolean abortProcessing)
        Set abort the processing
        Parameters:
        abortProcessing - true to abort the processing; false to continue the processing