Package com.chemaxon.calculations.io
Class OrderedInputProcessingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- com.chemaxon.calculations.io.OrderedInputProcessingException
-
- All Implemented Interfaces:
Serializable
@PublicAPI @Beta public class OrderedInputProcessingException extends IllegalArgumentException
Processing an item from an ordered list of items failed.Please note that this class is marked with @Beta annotation, so it can be subject of incompatible changes or removal in later releases.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OrderedInputProcessingException(int inputIndex, Throwable cause)
Construct.OrderedInputProcessingException(OrderedElement<?> input, Throwable cause)
Construct.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getInputIndex()
Represented element index.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
OrderedInputProcessingException
public OrderedInputProcessingException(int inputIndex, Throwable cause)
Construct.- Parameters:
inputIndex
- Associated element index. Expected to be 0-based.cause
- Cause
-
OrderedInputProcessingException
public OrderedInputProcessingException(OrderedElement<?> input, Throwable cause)
Construct.- Parameters:
input
- Associated elementcause
- Cause
-
-