Class GraphQlConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.helidon.microprofile.graphql.server.GraphQlConfigurationException
-
- All Implemented Interfaces:
Serializable
public class GraphQlConfigurationException extends RuntimeException
Defines an exception that is critical enough that will cause the GraphQL application to not start.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GraphQlConfigurationException()
Construct aGraphQlConfigurationException
.GraphQlConfigurationException(String message)
Construct aGraphQlConfigurationException
with a given message.GraphQlConfigurationException(String message, Throwable throwable)
Construct aGraphQlConfigurationException
with a given message andThrowable
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
GraphQlConfigurationException
public GraphQlConfigurationException()
Construct aGraphQlConfigurationException
.
-
GraphQlConfigurationException
public GraphQlConfigurationException(String message)
Construct aGraphQlConfigurationException
with a given message.- Parameters:
message
- exception message
-
GraphQlConfigurationException
public GraphQlConfigurationException(String message, Throwable throwable)
Construct aGraphQlConfigurationException
with a given message andThrowable
.- Parameters:
message
- exception messagethrowable
-Throwable
-
-