/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.intel.mtwilson.datatypes; import com.fasterxml.jackson.annotation.JsonProperty; /** * * @author jbuhacoff */ public final class ErrorResponse { private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(ErrorResponse.class); @JsonProperty("error_code") private String errorCode; @JsonProperty("error_message") private String errorMessage; public String getErrorCode() { return errorCode; } public String getErrorMessage() { return errorMessage; } }