Package io.quarkus.builder
Class ChainBuildException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.quarkus.builder.ChainBuildException
- All Implemented Interfaces:
Serializable
The exception thrown when a deployer chain build fails.
- Author:
- David M. Lloyd
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newDeployerChainBuildExceptioninstance.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 Details
-
ChainBuildException
public ChainBuildException()Constructs a newDeployerChainBuildExceptioninstance. The message is left blank (null), and no cause is specified. -
ChainBuildException
Constructs a newDeployerChainBuildExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
ChainBuildException
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
-
ChainBuildException
Constructs a newDeployerChainBuildExceptioninstance with an initial message and cause.- Parameters:
msg- the messagecause- the cause
-