Package de.xima.fc.workflow.itemlist
Class InvalidCsvValueException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.xima.fc.workflow.itemlist.InvalidCsvValueException
-
- All Implemented Interfaces:
Serializable
public final class InvalidCsvValueException extends Exception
Thrown byFcForEachLoopItemListCsv.evaluate()
when the value is not a valid character separated values string as defined by theListItemSourcePropsCharacterSeparatedValues
.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidCsvValueException(String csvString, Exception cause)
Constructs a new exception for a given invalid character separated values string.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCsvString()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidCsvValueException
public InvalidCsvValueException(String csvString, Exception cause)
Constructs a new exception for a given invalid character separated values string.- Parameters:
csvString
- The invalid string representation of a JSON value that caused the error.cause
- Underlying exception that caused the error, usually some kind of parser exception.
-
-
Method Detail
-
getCsvString
public String getCsvString()
- Returns:
- The invalid character separated values string that caused the error.
-
-