Package org.openrewrite
Class RecipeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.openrewrite.RecipeException
-
- All Implemented Interfaces:
java.io.Serializable
public class RecipeException extends java.lang.RuntimeExceptionWhen possible,Recipeshould 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 throwRecipeException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RecipeException(java.lang.String message)RecipeException(java.lang.String message, java.lang.Object... args)RecipeException(java.lang.Throwable cause)RecipeException(java.lang.Throwable cause, java.lang.String message, java.lang.Object... args)
-
-
-
Constructor Detail
-
RecipeException
public RecipeException(java.lang.Throwable cause)
-
RecipeException
public RecipeException(java.lang.String message)
-
RecipeException
public RecipeException(java.lang.String message, java.lang.Object... args)
-
RecipeException
public RecipeException(java.lang.Throwable cause, java.lang.String message, java.lang.Object... args)
-
-