Package org.pipecraft.pipes.exceptions
Class ValidationPipeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.pipecraft.pipes.exceptions.PipeException
-
- org.pipecraft.pipes.exceptions.ValidationPipeException
-
- All Implemented Interfaces:
Serializable
public class ValidationPipeException extends PipeException
Indicates that the contents of a pipe were found to be invalid- Author:
- Eyal Schneider
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValidationPipeException(String msg)ConstructorValidationPipeException(String msg, Throwable cause)ConstructorValidationPipeException(Throwable cause)Constructor
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ValidationPipeException
public ValidationPipeException(String msg)
Constructor- Parameters:
msg- The error message
-
ValidationPipeException
public ValidationPipeException(String msg, Throwable cause)
Constructor- Parameters:
msg- The error messagecause- The nested exception
-
ValidationPipeException
public ValidationPipeException(Throwable cause)
Constructor- Parameters:
cause- The nested exception
-
-