Interface SmallRyeGraphQLServerMessages

    • Method Detail

      • generalDataFetcherException

        @Message(id=3,
                 value="Data fetching failed for [%s]")
        DataFetcherException generalDataFetcherException​(String operation,
                                                         @Cause
                                                         Throwable cause)
      • countNotGetInstance

        @Message(id=5,
                 value="Could not get Instance using the default lookup service")
        RuntimeException countNotGetInstance​(@Cause
                                             Throwable t)
      • metricsNotSupportedWithoutCDI

        @Message(id=6,
                 value="Metrics are not supported without CDI")
        UnsupportedOperationException metricsNotSupportedWithoutCDI()
      • openTracingNotSupportedWithoutCDI

        @Message(id=8,
                 value="OpenTracing is not supported without CDI")
        UnsupportedOperationException openTracingNotSupportedWithoutCDI()
      • notAValidNumberType

        @Message(id=10,
                 value="[%s] is not a valid number type")
        RuntimeException notAValidNumberType​(String typeClassName)
      • numberFormatException

        @Message(id=11,
                 value="Can not parse a number from [%s]")
        NumberFormatException numberFormatException​(String input)
      • coercingSerializeException

        @Message(id=12,
                 value="Expected type [%s] but was [%s].")
        graphql.schema.CoercingSerializeException coercingSerializeException​(String expectedType,
                                                                             String actualType,
                                                                             @Cause
                                                                             Exception cause)
      • coercingParseValueException

        @Message(id=13,
                 value="Expected type [%s] but was [%s].")
        graphql.schema.CoercingParseValueException coercingParseValueException​(String expectedType,
                                                                               String actualType,
                                                                               @Cause
                                                                               Exception cause)
      • coercingParseLiteralException

        @Message(id=14,
                 value="Expected value to be in the %s range but it was \'%s\'")
        graphql.schema.CoercingParseLiteralException coercingParseLiteralException​(String expectedRange,
                                                                                   String actual)
      • coercingParseLiteralException

        @Message(id=15,
                 value="Expected AST type \'IntValue\' or \'StringValue\' but was \'%s\'.")
        graphql.schema.CoercingParseLiteralException coercingParseLiteralException​(String actualType)
      • cantParseDate

        @Message(id=16,
                 value="Can\'t parse [%s] into [%s]")
        RuntimeException cantParseDate​(String inputTypeName,
                                       String targetClassName)
      • notValidDateOrTimeType

        @Message(id=17,
                 value="[%s] is no valid date or time-type")
        RuntimeException notValidDateOrTimeType​(String className)
      • unknownDateFormat

        @Message(id=18,
                 value="Unknown date format [%s]")
        DateTimeException unknownDateFormat​(String input)
      • unsupportedWrappedClass

        @Message(id=19,
                 value="Unsupported wrapped type. SmallRye only support DataFetchingEnvironment and not %s")
        IllegalArgumentException unsupportedWrappedClass​(String className)
      • canNotInjectClass

        @Message(id=20,
                 value="Can not inject an instance of class [%s]. Please make sure it is a CDI bean, also possibly the beans.xml file is needed")
        RuntimeException canNotInjectClass​(String className,
                                           @Cause
                                           Exception cause)