org.dhmp.io
Class MapIOException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.dhmp.io.MapIOException
All Implemented Interfaces:
java.io.Serializable

public class MapIOException
extends java.lang.RuntimeException

Thrown when IOException or any other exeception occurs while converting HierarchicalMap to and from streams.

Author:
hideyuki
See Also:
Serialized Form

Constructor Summary
MapIOException(java.lang.String message)
          Constructs a MapIOException with the specified detail message.
MapIOException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
MapIOException(java.lang.Throwable cause)
          Constructs a new exception with the specified cause
 
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

MapIOException

public MapIOException(java.lang.String message)
Constructs a MapIOException with the specified detail message.

Parameters:
message - the detail message.

MapIOException

public MapIOException(java.lang.Throwable cause)
Constructs a new exception with the specified cause

Parameters:
cause - the cause.

MapIOException

public MapIOException(java.lang.String message,
                      java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
message - the detail message.
cause - the cause.