com.cysols.iodef.analysis.packet
Class PacketReadException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.cysols.iodef.analysis.packet.PacketReadException
All Implemented Interfaces:
Serializable

public class PacketReadException
extends Exception

The exception means it is unable to read the stored Packet data from data repository.

See Also:
Serialized Form

Constructor Summary
PacketReadException()
          default constructor.
PacketReadException(String message)
          A constructor with the specified message.
PacketReadException(String message, Throwable cause)
          A constructor with the specified message and Throwable instance of its cause.
PacketReadException(Throwable cause)
          A constructor with Throwable instance of its cause.
 
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

PacketReadException

public PacketReadException()
default constructor.


PacketReadException

public PacketReadException(String message)
A constructor with the specified message.

Parameters:
message - the specified exceptional message.

PacketReadException

public PacketReadException(String message,
                           Throwable cause)
A constructor with the specified message and Throwable instance of its cause.

Parameters:
message - the specified exceptional message.
cause - the cause of this exception.

PacketReadException

public PacketReadException(Throwable cause)
A constructor with Throwable instance of its cause.

Parameters:
cause - the cause of this exception.