All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.schema.CoercingSerializeException Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.schema;

import graphql.GraphQLException;
import graphql.PublicApi;

@PublicApi
public class CoercingSerializeException extends GraphQLException {

    public CoercingSerializeException() {
    }

    public CoercingSerializeException(String message) {
        super(message);
    }

    public CoercingSerializeException(String message, Throwable cause) {
        super(message, cause);
    }

    public CoercingSerializeException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy