package org.zstack.sdk; /** * Created by xing5 on 2016/12/9. */ public class ApiException extends RuntimeException { public ApiException() { } public ApiException(String message) { super(message); } public ApiException(String message, Throwable cause) { super(message, cause); } public ApiException(Throwable cause) { super(cause); } public ApiException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }