Secret_Share
Class RecoverException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--Secret_Share.SecretShareException
                    |
                    +--Secret_Share.RecoverException
All Implemented Interfaces:
java.io.Serializable

public class RecoverException
extends SecretShareException

This exception is thrown when there is an error recovering the secret. These errors are when the supplied arguments are either not valid or insufficient to recover the secret.

Version:
.1
Author:
Brice Daniels
See Also:
Serialized Form

Constructor Summary
RecoverException()
          Creates a new instance of RecoverException without detail message.
RecoverException(java.lang.String msg)
          Constructs an instance of RecoverException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RecoverException

public RecoverException()
Creates a new instance of RecoverException without detail message.


RecoverException

public RecoverException(java.lang.String msg)
Constructs an instance of RecoverException with the specified detail message.

Parameters:
msg - the detail message.