Class RecipeException

All Implemented Interfaces:
Serializable

public class RecipeException extends RuntimeException
When possible, Recipe should validate themselves prior to execution to prove that they are runnable without failure. But in some cases, recipes may interact with external systems that may fail even though the inputs validate. In those cases, recipes may throw RecipeException.
See Also:
  • Constructor Details

    • RecipeException

      public RecipeException(Throwable cause)
    • RecipeException

      public RecipeException(String message)
    • RecipeException

      public RecipeException(String message, Object... args)
    • RecipeException

      public RecipeException(Throwable cause, String message, Object... args)