Package com._1c.g5.v8.dt.import_
Class ImportException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com._1c.g5.v8.dt.import_.ImportException
- All Implemented Interfaces:
Serializable
Exception class Importer Framework.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionImportException(String message) Constructs a new exception with the specified detail message.ImportException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.ImportException(Throwable cause) Constructs a new exception with the specified cause and a detail message of (cause==null ? -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ImportException
Constructs a new exception with the specified detail message.- Parameters:
message- exception description
-
ImportException
Constructs a new exception with the specified detail message and cause.- Parameters:
message- exception descriptioncause- child exception object
-
ImportException
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).- Parameters:
cause- child exception object
-