Class FrontendUtils.UnknownVersionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.jmix.flowui.devserver.frontend.FrontendUtils.UnknownVersionException
- All Implemented Interfaces:
Serializable
- Enclosing class:
- FrontendUtils
Thrown when detecting the version of a tool fails.
- See Also:
-
Constructor Summary
ConstructorDescriptionUnknownVersionException
(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 Details
-
UnknownVersionException
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
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
-