Package org.pipecraft.pipes.exceptions
Class OutOfOrderPipeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.pipecraft.pipes.exceptions.PipeException
-
- org.pipecraft.pipes.exceptions.OutOfOrderPipeException
-
- All Implemented Interfaces:
Serializable
public class OutOfOrderPipeException extends PipeException
Indicates that the ordering of items in a pipe was not as expected- Author:
- Eyal Schneider
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OutOfOrderPipeException(String msg)ConstructorOutOfOrderPipeException(String msg, Throwable cause)ConstructorOutOfOrderPipeException(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
-
OutOfOrderPipeException
public OutOfOrderPipeException(String msg)
Constructor- Parameters:
msg- The error message
-
OutOfOrderPipeException
public OutOfOrderPipeException(String msg, Throwable cause)
Constructor- Parameters:
msg- The error messagecause- The nested exception
-
OutOfOrderPipeException
public OutOfOrderPipeException(Throwable cause)
Constructor- Parameters:
cause- The nested exception
-
-