Package de.hybris.platform.impex.jalo
Class ImpExException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.hybris.platform.jalo.JaloBusinessException
de.hybris.platform.impex.jalo.ImpExException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AmbiguousItemException,HeaderValidationException,InsufficientDataException,ItemConflictException,UnresolvedValueException
Base class of all ImpEx exceptions. Is thrown if an error occurs within the processing of an ImpEx script.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclassClass containing defining all error codes of exception caused by ImpEx. -
Constructor Summary
ConstructorsConstructorDescriptionImpExException(String message) Creates a new exception thrown by ImpEx extension.ImpExException(String message, int errorCode) Creates a new exception thrown by ImpEx extension.ImpExException(Throwable nested) Creates a new exception thrown by ImpEx extension.ImpExException(Throwable nested, int errorCode) Creates a new exception thrown by ImpEx extension.ImpExException(Throwable nested, String message, int errorCode) Creates a new exception thrown by ImpEx extension. -
Method Summary
Methods inherited from class de.hybris.platform.jalo.JaloBusinessException
getErrorCode, getThrowable, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
ImpExException
Creates a new exception thrown by ImpEx extension.- Parameters:
nested- exception which has caused this causemessage- description of errorerrorCode- specific error code
-
ImpExException
Creates a new exception thrown by ImpEx extension.- Parameters:
message- description of errorerrorCode- specific error code
-
ImpExException
Creates a new exception thrown by ImpEx extension.- Parameters:
nested- exception which has caused this causeerrorCode- specific error code
-
ImpExException
Creates a new exception thrown by ImpEx extension.- Parameters:
nested- exception which has caused this cause
-
ImpExException
Creates a new exception thrown by ImpEx extension.- Parameters:
message- description of error
-