Back to project page android-rackspacecloud.
The source code is released under:
MIT License
If you think the Android project android-rackspacecloud listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * //from w w w . j a v a2 s. c o m */ package com.rackspace.cloud.servers.api.client; /** * @author Mike Mayo - mike.mayo@rackspace.com - twitter.com/greenisus * */ public class CloudServersException extends Exception { private static final long serialVersionUID = -4788874449651935081L; private int code; private String message; private String details; /** * @return the code */ public int getCode() { return code; } /** * @param code the code to set */ public void setCode(int code) { this.code = code; } /** * @return the message */ public String getMessage() { return message; } /** * @param message the message to set */ public void setMessage(String message) { this.message = message; } /** * @return the details */ public String getDetails() { return details; } /** * @param details the details to set */ public void setDetails(String details) { this.details = details; } }