Package com.appliedrec.verid.core2
Class VerIDCoreException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.appliedrec.verid.core2.VerIDCoreException
-
- All Implemented Interfaces:
java.io.Serializable
public class VerIDCoreException extends java.lang.Exception
Exceptions thrown by the core face detection/recognition library- Since:
- 2.0.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VerIDCoreException.Code
Error codesstatic class
VerIDCoreException.UserInfoKey
Keys used in the user info bundle
-
Constructor Summary
Constructors Constructor Description VerIDCoreException(VerIDCoreException.Code code)
Exception constructorVerIDCoreException(VerIDCoreException.Code code, android.os.Bundle userInfo)
VerIDCoreException(java.lang.Throwable cause, VerIDCoreException.Code code)
Exception constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VerIDCoreException.Code
getCode()
Get exception error codeandroid.os.Bundle
getUserInfo()
Get extra error information
-
-
-
Constructor Detail
-
VerIDCoreException
public VerIDCoreException(VerIDCoreException.Code code)
Exception constructor- Parameters:
code
- Error code- Since:
- 2.0.0
-
VerIDCoreException
public VerIDCoreException(VerIDCoreException.Code code, android.os.Bundle userInfo)
-
VerIDCoreException
public VerIDCoreException(java.lang.Throwable cause, VerIDCoreException.Code code)
Exception constructor- Parameters:
cause
- Throwable that caused this exceptioncode
- Error code- Since:
- 2.0.0
-
-
Method Detail
-
getCode
public VerIDCoreException.Code getCode()
Get exception error code- Returns:
- Error code
- Since:
- 2.0.0
-
getUserInfo
public android.os.Bundle getUserInfo()
Get extra error information- Returns:
- Bundle with error information
- Since:
- 2.10.0
- See Also:
for a list of keys used in the bundle
-
-