Secret_Share
Class SecretShareException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--Secret_Share.SecretShareException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
RecoverException, ShareAddException, ShareException, ShareUtilException, SplitException

public class SecretShareException
extends java.lang.Exception

This exception exists to give a general exception to catch all of the Secret Share exceptions. The caller of a secret share function can either use one of the specific exceptions or use this exception to catch just the secret share exceptions thrown by the function. It will not catch all exceptions.

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

Constructor Summary
SecretShareException()
          Creates a new instance of SecretShareException without detail message.
SecretShareException(java.lang.String msg)
          Constructs an instance of SecretShareException 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

SecretShareException

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


SecretShareException

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

Parameters:
msg - the detail message.