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

com.inteligr8.solr.model.ExceptionResponse Maven / Gradle / Ivy

The newest version!
package com.inteligr8.solr.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
public class ExceptionResponse extends BaseResponse {
	
	@JsonProperty
	private ErrorMetadata error;
	
	public ErrorMetadata getError() {
		return error;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy