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:
java.io.Serializable
- Direct Known Subclasses:
AmbiguousItemException
,HeaderValidationException
,InsufficientDataException
,ItemConflictException
,UnresolvedValueException
public class ImpExException extends JaloBusinessException
Base class of all ImpEx exceptions. Is thrown if an error occurs within the processing of an ImpEx script.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
ImpExException.ErrorCodes
Class containing defining all error codes of exception caused by ImpEx.
-
Constructor Summary
Constructors Constructor Description ImpExException(java.lang.String message)
Creates a new exception thrown by ImpEx extension.ImpExException(java.lang.String message, int errorCode)
Creates a new exception thrown by ImpEx extension.ImpExException(java.lang.Throwable nested)
Creates a new exception thrown by ImpEx extension.ImpExException(java.lang.Throwable nested, int errorCode)
Creates a new exception thrown by ImpEx extension.ImpExException(java.lang.Throwable nested, java.lang.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, toString
-
-
-
-
Constructor Detail
-
ImpExException
public ImpExException(java.lang.Throwable nested, java.lang.String message, int errorCode)
Creates a new exception thrown by ImpEx extension.- Parameters:
nested
- exception which has caused this causemessage
- description of errorerrorCode
- specific error code
-
ImpExException
public ImpExException(java.lang.String message, int errorCode)
Creates a new exception thrown by ImpEx extension.- Parameters:
message
- description of errorerrorCode
- specific error code
-
ImpExException
public ImpExException(java.lang.Throwable nested, int errorCode)
Creates a new exception thrown by ImpEx extension.- Parameters:
nested
- exception which has caused this causeerrorCode
- specific error code
-
ImpExException
public ImpExException(java.lang.Throwable nested)
Creates a new exception thrown by ImpEx extension.- Parameters:
nested
- exception which has caused this cause
-
ImpExException
public ImpExException(java.lang.String message)
Creates a new exception thrown by ImpEx extension.- Parameters:
message
- description of error
-
-