001/*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005package org.anarres.qemu.qapi.common;
006
007import com.fasterxml.jackson.annotation.JsonProperty;
008
009/**
010 *
011 * @author shevek
012 */
013public class QApiError extends QApiObject {
014
015    @JsonProperty("class")
016    public String _class;
017    @JsonProperty
018    public String desc;
019    // Emitted by QEmu 1.0. Later versions too?
020    @JsonProperty
021    public Object data;
022}