Package io.quarkus.builder
Class ChainBuildException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- io.quarkus.builder.ChainBuildException
-
- All Implemented Interfaces:
Serializable
public final class ChainBuildException extends Exception
The exception thrown when a deployer chain build fails.- Author:
- David M. Lloyd
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ChainBuildException()Constructs a newDeployerChainBuildExceptioninstance.ChainBuildException(String msg)Constructs a newDeployerChainBuildExceptioninstance with an initial message.ChainBuildException(String msg, Throwable cause)Constructs a newDeployerChainBuildExceptioninstance with an initial message and cause.ChainBuildException(Throwable cause)Constructs a newDeployerChainBuildExceptioninstance with an initial cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ChainBuildException
public ChainBuildException()
Constructs a newDeployerChainBuildExceptioninstance. The message is left blank (null), and no cause is specified.
-
ChainBuildException
public ChainBuildException(String msg)
Constructs a newDeployerChainBuildExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
ChainBuildException
public ChainBuildException(Throwable cause)
Constructs a newDeployerChainBuildExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisDeployerChainBuildException; otherwise the message is left blank (null).- Parameters:
cause- the cause
-
-