Class UnknownProcessTypeException

All Implemented Interfaces:
Serializable

public class UnknownProcessTypeException extends ProcessException
This type of exception is used when an invalid process is encountered.
Since:
7.1
Author:
Jon van Leuven
See Also:
  • Constructor Details

    • UnknownProcessTypeException

      public UnknownProcessTypeException(String processTypeName)
      Constructs the exception with the invalid process name.
      Parameters:
      processTypeName - The name of the process that is invalid
    • UnknownProcessTypeException

      public UnknownProcessTypeException(String processTypeName, String message)
      Constructs the exception with the invalid process name and a message containing more information about the cause or place of the error.
      Parameters:
      processTypeName - The name of the process that is invalid
      message - Message containing additional information about the error.
  • Method Details

    • getProcessTypeName

      public String getProcessTypeName()
      This method returns the name of the process that was invalid.
      Returns:
      the name of the process that was invalid.