Package com._1c.g5.v8.dt.pm
Class ProcessExitedWithErrorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com._1c.g5.v8.dt.pm.ProcessExitedWithErrorException
-
- All Implemented Interfaces:
Serializable
public class ProcessExitedWithErrorException extends Exception
Occurs when process has exited with error when it were starting.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessExitedWithErrorException(String message, int exitCode)
Constructs new instance with given message and code with which the process has exited.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getExitCode()
Returns the code with which the process has exited.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ProcessExitedWithErrorException
public ProcessExitedWithErrorException(String message, int exitCode)
Constructs new instance with given message and code with which the process has exited.- Parameters:
message
- given message (may benull
)given
- exit code with which the process has exited
-
-