Class DataImportException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sourceforge.jbizmo.commons.exchange.DataImportException
-
- All Implemented Interfaces:
Serializable
public class DataImportException extends RuntimeException
Exception thrown by data exchange methods if an import operation fails
Copyright 2013 (C) by Martin Ganserer
- Version:
- 1.0.0
- Author:
- Martin Ganserer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataImportException(String message)ConstructorDataImportException(String message, Throwable cause)ConstructorDataImportException(Throwable cause)ConstructorDataImportException(Throwable cause, boolean extractRootCauseMessage)Constructor that initializes the exception with the message of the root cause
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DataImportException
public DataImportException(String message)
Constructor- Parameters:
message-
-
DataImportException
public DataImportException(Throwable cause)
Constructor- Parameters:
cause- the cause of the exception
-
DataImportException
public DataImportException(String message, Throwable cause)
Constructor- Parameters:
message- the error messagecause- the cause of the exception
-
DataImportException
public DataImportException(Throwable cause, boolean extractRootCauseMessage)
Constructor that initializes the exception with the message of the root cause- Parameters:
cause- the cause of the exceptionextractRootCauseMessage- is only necessary to have a different method signature
-
-