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
public class CliApiException extends RuntimeException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CliApiException(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 Detail
-
CliApiException
public CliApiException(String message)
Creates an instance ofCliApiException
.- Parameters:
message
- the detail message, cannot benull
-
CliApiException
public CliApiException(Throwable cause)
Creates an instance ofCliApiException
.- Parameters:
cause
- the cause exception, cannot benull
-
CliApiException
public CliApiException(String message, Throwable cause)
Creates an instance ofCliApiException
.- Parameters:
message
- the detail message, cannot benull
cause
- the cause exception, cannot benull
-
-