org.magnos.data.error
Class StoreIOException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.magnos.data.error.StoreIOException
All Implemented Interfaces:
java.io.Serializable

public class StoreIOException
extends java.lang.RuntimeException

An IOException has occurred, this is a RuntimeException wrapping IO errors.

Author:
Philip Diffenderfer
See Also:
Serialized Form

Constructor Summary
StoreIOException(java.io.IOException e)
          Instantiates a new StoreIOException.
 
Method Summary
 java.io.IOException getSource()
          The IOException that was thrown.
 
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

StoreIOException

public StoreIOException(java.io.IOException e)
Instantiates a new StoreIOException.

Parameters:
e - The IOException that was thrown.
Method Detail

getSource

public java.io.IOException getSource()
The IOException that was thrown.

Returns:
The reference to the exception.