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 007/** 008 * 009 * @author shevek 010 */ 011public class QApiException extends Exception { 012 013 public QApiException() { 014 } 015 016 public QApiException(String message) { 017 super(message); 018 } 019 020 public QApiException(String message, Throwable cause) { 021 super(message, cause); 022 } 023 024 public QApiException(Throwable cause) { 025 super(cause); 026 } 027}