/* * Hibernate OGM, Domain model persistence for NoSQL datastores * * License: GNU Lesser General Public License (LGPL), version 2.1 or later * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.ogm.datastore.neo4j.remote.http.json.impl; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; /** * @author Davide D'Alto */ @JsonIgnoreProperties(ignoreUnknown = true) public class ErrorResponse { private String code; private String message; public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } @Override public String toString() { return code + ": " + message; } }