com.sun.slamd.db
Class DecodeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.sun.slamd.db.DecodeException
All Implemented Interfaces:
java.io.Serializable

public class DecodeException
extends java.lang.Exception

This class defines an exception that may be thrown if a problem arises while attempting to decode a set of encoded data.

Author:
Neil A. Wilson
See Also:
Serialized Form

Constructor Summary
DecodeException(java.lang.String message)
          Creates a new decode exception with the provided message.
DecodeException(java.lang.String message, java.lang.Throwable cause)
          Creates a new decode exception with the provided message.
 
Method Summary
 
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

DecodeException

public DecodeException(java.lang.String message)
Creates a new decode exception with the provided message.

Parameters:
message - The message providing the reason for this exception.

DecodeException

public DecodeException(java.lang.String message,
                       java.lang.Throwable cause)
Creates a new decode exception with the provided message.

Parameters:
message - The message providing the reason for this exception.
cause - The underlying cause for this exception.