Package com.nuix.superutilities.regex
Class RegexScanError
- java.lang.Object
-
- com.nuix.superutilities.regex.RegexScanError
-
public class RegexScanError extends java.lang.Object
Represents information about an error which occurred inRegexScanner
while scanning.
-
-
Constructor Summary
Constructors Constructor Description RegexScanError(nuix.Item item, PatternInfo patternInfo, java.lang.String location, java.lang.Exception exception)
Creates a new instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Exception
getException()
Gets the associated exceptionnuix.Item
getItem(nuix.Case nuixCase)
Gets the associated itemjava.lang.String
getItemGuid()
java.lang.String
getLocation()
Gets the associated locationPatternInfo
getPatternInfo()
Gets the associated pattern info
-
-
-
Constructor Detail
-
RegexScanError
public RegexScanError(nuix.Item item, PatternInfo patternInfo, java.lang.String location, java.lang.Exception exception)
Creates a new instance- Parameters:
item
- The item being scanned during the errorpatternInfo
- The pattern in use when the error occurredlocation
- The location being scanned when the error occured (content or metadata property name)exception
- The exception which was thrown
-
-
Method Detail
-
getItem
public nuix.Item getItem(nuix.Case nuixCase)
Gets the associated item- Parameters:
nuixCase
- The case in which the item resides.- Returns:
- The associated item
-
getItemGuid
public java.lang.String getItemGuid()
-
getPatternInfo
public PatternInfo getPatternInfo()
Gets the associated pattern info- Returns:
- The associated pattern info
-
getLocation
public java.lang.String getLocation()
Gets the associated location- Returns:
- The associated location
-
getException
public java.lang.Exception getException()
Gets the associated exception- Returns:
- The associated exception
-
-