graphql.schema.CoercingSerializeException Maven / Gradle / Ivy
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