Class ExecutableNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.siouan.frontendgradleplugin.core.FrontendException
-
- org.siouan.frontendgradleplugin.core.ExecutableNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class ExecutableNotFoundException extends FrontendException
Exception thrown when an executable cannot be found.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExecutableNotFoundExceptionnewNodeExecutableNotFoundException()Builds the appropriate exception when the Node executable cannot be found.static ExecutableNotFoundExceptionnewNpmExecutableNotFoundException()Builds the appropriate exception when the NPM executable cannot be found.static ExecutableNotFoundExceptionnewYarnExecutableNotFoundException()Builds the appropriate exception when the Yarn executable cannot be found.
-
-
-
Field Detail
-
NODE
public static final java.lang.String NODE
- See Also:
- Constant Field Values
-
NPM
public static final java.lang.String NPM
- See Also:
- Constant Field Values
-
YARN
public static final java.lang.String YARN
- See Also:
- Constant Field Values
-
-
Method Detail
-
newNodeExecutableNotFoundException
public static ExecutableNotFoundException newNodeExecutableNotFoundException()
Builds the appropriate exception when the Node executable cannot be found.- Returns:
- Exception.
-
newNpmExecutableNotFoundException
public static ExecutableNotFoundException newNpmExecutableNotFoundException()
Builds the appropriate exception when the NPM executable cannot be found.- Returns:
- Exception.
-
newYarnExecutableNotFoundException
public static ExecutableNotFoundException newYarnExecutableNotFoundException()
Builds the appropriate exception when the Yarn executable cannot be found.- Returns:
- Exception.
-
-