We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.server.frontend.
Class FrontendUtils.CommandExecutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.vaadin.flow.server.frontend.FrontendUtils.CommandExecutionException
-
All Implemented Interfaces:
Enclosing class:
public static class FrontendUtils.CommandExecutionException extends Exception
Thrown when the command execution fails.
See Also:
-
-
Constructor Summary
Constructors Constructor Description CommandExecutionException(int processExitCode)
Constructs an exception telling what code the command execution process was exited with.
CommandExecutionException(Throwable cause)
Constructs an exception telling what was the original exception the command execution process failed with.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CommandExecutionException
public CommandExecutionException(int processExitCode)
Constructs an exception telling what code the command execution process was exited with.
Parameters:
processExitCode
- process exit code
-
CommandExecutionException
public CommandExecutionException(Throwable cause)
Constructs an exception telling what was the original exception the command execution process failed with.
Parameters:
cause
- the cause exception of process failure.
-
-