Package org.pipecraft.pipes.exceptions
Class PipeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.pipecraft.pipes.exceptions.PipeException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ExcessiveResourcesUsagePipeException,InternalPipeException,IOPipeException,JdbcPipeException,OutOfOrderPipeException,QueuePipeException,TimeoutPipeException,ValidationPipeException
public abstract class PipeException extends Exception
Indicates an error during data fetching/processing/writing of a pipeline This is the surertype for all pipe exceptions.- Author:
- Eyal Schneider
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PipeException(String msg)ConstructorPipeException(String msg, Throwable cause)ConstructorPipeException(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
-
PipeException
public PipeException(String msg)
Constructor- Parameters:
msg- The error message
-
PipeException
public PipeException(String msg, Throwable cause)
Constructor- Parameters:
msg- The error messagecause- The nested exception
-
PipeException
public PipeException(Throwable cause)
Constructor- Parameters:
cause- The nested exception
-
-