com.ail.core.persistence
Class LoadException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.ail.core.BaseException
              extended by com.ail.core.persistence.LoadException
All Implemented Interfaces:
java.io.Serializable

public class LoadException
extends BaseException

Error indicating that loading of an object could not be completed. The error indicates some form of configuration problem

Version:
$Revision: 1.2 $
See Also:
Serialized Form

Constructor Summary
LoadException(BaseError e)
          Constructor Turn a BaseError into a BaseException
LoadException(java.lang.String description)
          Constructor
LoadException(java.lang.String description, java.lang.Throwable target)
          Constructor
 
Method Summary
 
Methods inherited from class com.ail.core.BaseException
addError, getDescription, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LoadException

public LoadException(java.lang.String description)
Constructor

Parameters:
description - A description of the error.

LoadException

public LoadException(java.lang.String description,
                     java.lang.Throwable target)
Constructor

Parameters:
description - A description of the error.
target - The exception that caused this error to be thrown.

LoadException

public LoadException(BaseError e)
Constructor Turn a BaseError into a BaseException

Parameters:
e - BaseError to convert.