Module com.machinezoo.fingerprintio
Package com.machinezoo.fingerprintio
Class TemplateFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.machinezoo.fingerprintio.TemplateFormatException
-
- All Implemented Interfaces:
-
Serializable
public class TemplateFormatException extends RuntimeException
Exception thrown when fingerprint template does not match format specification.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TemplateFormatException(String message)Creates newTemplateFormatExceptionwith the specified message.TemplateFormatException(String message, Throwable cause)Creates newTemplateFormatExceptionwith the specified message and cause.TemplateFormatException(Throwable cause)Creates newTemplateFormatExceptionwith the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TemplateFormatException
public TemplateFormatException(String message)
Creates newTemplateFormatExceptionwith the specified message.- Parameters:
-
message- informative message (possiblynull) that can be later retrieved viaThrowable.getMessage()
-
TemplateFormatException
public TemplateFormatException(Throwable cause)
Creates newTemplateFormatExceptionwith the specified cause.- Parameters:
-
cause- cause of this exception (possiblynull) that can be later retrieved viaThrowable.getCause()
-
TemplateFormatException
public TemplateFormatException(String message, Throwable cause)
Creates newTemplateFormatExceptionwith the specified message and cause.- Parameters:
-
message- informative message (possiblynull) that can be later retrieved viaThrowable.getMessage() -
cause- cause of this exception (possiblynull) that can be later retrieved viaThrowable.getCause()
-
-