com.vaadin.flow.server.frontend.
Class FrontendUtils.UnknownVersionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.vaadin.flow.server.frontend.FrontendUtils.UnknownVersionException
-
All Implemented Interfaces:
Enclosing class:
public static class FrontendUtils.UnknownVersionException extends Exception
Thrown when detecting the version of a tool fails.
See Also:
-
-
Constructor Summary
Constructors Constructor Description UnknownVersionException(String tool, String extraInfo)
Constructs an exception telling which tool was being detected and using what command.
UnknownVersionException(String tool, String extraInfo, Exception cause)
Constructs an exception telling which tool was being detected and using what command, and the exception causing the failure.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnknownVersionException
public UnknownVersionException(String tool, String extraInfo)
Constructs an exception telling which tool was being detected and using what command.
Parameters:
tool
- the tool being detectedextraInfo
- extra information which might be helpful to the end user
-
UnknownVersionException
public UnknownVersionException(String tool, String extraInfo, Exception cause)
Constructs an exception telling which tool was being detected and using what command, and the exception causing the failure.
Parameters:
tool
- the tool being detectedextraInfo
- extra information which might be helpful to the end usercause
- the exception causing the failure
-
-