Package com.aspose.tasks
Class ParseErrorArgs
- java.lang.Object
-
- com.aspose.tasks.ParseErrorArgs
-
public class ParseErrorArgs extends Object
Provides data for the
ParseErrorCallback
delegate.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RuntimeException
getException()
Gets the raised exception during parsing string value.Class
getFieldClass()
The object field class.String
getFieldName()
Gets the object field name.String
getInvalidValue()
Gets the string value which raised an exception.
-
-
-
Method Detail
-
getException
public final RuntimeException getException()
Gets the raised exception during parsing string value.
- Returns:
- the raised exception during parsing string value.
-
getFieldName
public final String getFieldName()
Gets the object field name.
- Returns:
- the object field name.
-
getInvalidValue
public final String getInvalidValue()
Gets the string value which raised an exception.
- Returns:
- the string value which raised an exception.
-
getFieldClass
public Class getFieldClass()
The object field class.
- Returns:
- returns the object field class.
-
-