org.archiviststoolkit.importer
Class ImportException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.archiviststoolkit.importer.ImportException
All Implemented Interfaces:
java.io.Serializable

public class ImportException
extends java.lang.Exception

Returned when we couldnt find a domain instance.

See Also:
Serialized Form

Constructor Summary
ImportException(java.lang.String message)
          Constructor for construction of a new persistence exception.
ImportException(java.lang.String message, java.lang.String problemData)
          Constructor for wrapping internal exceptions.
ImportException(java.lang.String message, java.lang.String problemData, java.lang.Throwable cause)
          Constructor for wrapping internal exceptions.
ImportException(java.lang.String message, java.lang.Throwable cause)
          Constructor for wrapping internal exceptions.
 
Method Summary
 java.lang.String getErrorText()
           
 
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

ImportException

public ImportException(java.lang.String message,
                       java.lang.Throwable cause)
Constructor for wrapping internal exceptions.

Parameters:
message - string for human consumption
cause - the original exception which caused this one

ImportException

public ImportException(java.lang.String message,
                       java.lang.String problemData,
                       java.lang.Throwable cause)
Constructor for wrapping internal exceptions.

Parameters:
message - string for human consumption
cause - the original exception which caused this one

ImportException

public ImportException(java.lang.String message,
                       java.lang.String problemData)
Constructor for wrapping internal exceptions.

Parameters:
message - string for human consumption
cause - the original exception which caused this one

ImportException

public ImportException(java.lang.String message)
Constructor for construction of a new persistence exception.

Parameters:
message - string for human consumption
Method Detail

getErrorText

public java.lang.String getErrorText()