Package com._1c.g5.v8.dt.cli.api
Class CliApiException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com._1c.g5.v8.dt.cli.api.CliApiException
- All Implemented Interfaces:
Serializable
Signals that DT IDE API execution call from Cli error occurred. May be used by all public Cli API contracts.
Exception messages should be localized cause they will be visible in Cli console.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCliApiException
(String message) Creates an instance ofCliApiException
.CliApiException
(String message, Throwable cause) Creates an instance ofCliApiException
.CliApiException
(Throwable cause) Creates an instance ofCliApiException
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CliApiException
Creates an instance ofCliApiException
.- Parameters:
message
- the detail message, cannot benull
-
CliApiException
Creates an instance ofCliApiException
.- Parameters:
cause
- the cause exception, cannot benull
-
CliApiException
Creates an instance ofCliApiException
.- Parameters:
message
- the detail message, cannot benull
cause
- the cause exception, cannot benull
-