Back to project page dw2020.
The source code is released under:
Apache License
If you think the Android project dw2020 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fivehundredpx.api; // www .j av a2 s .co m public class FiveHundredException extends Exception { /** * */ private static final long serialVersionUID = 1755802476069592558L; private int statusCode = 0 ; public int getStatusCode() { return statusCode; } public FiveHundredException() { super(); } public FiveHundredException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public FiveHundredException(String detailMessage) { super(detailMessage); } public FiveHundredException(Throwable throwable) { super(throwable); } public FiveHundredException(int status) { super(); this.statusCode = status; } }