Back to project page QBShare-Android.
The source code is released under:
Copyright (c) 2011 QBurst, http://qburst.com/ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redi...
If you think the Android project QBShare-Android 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.qburst.android.linkedin; /*from w ww. j a v a 2s . co m*/ public class LinkedInError extends Throwable { private static final long serialVersionUID = 6626439442641443626L; private int mErrorCode = 0; private String mErrorType; public LinkedInError(String message) { super(message); } public LinkedInError(String message, String errorType, int errorCode) { super(message); mErrorType = errorType; mErrorCode = errorCode; } public int getErrorCode() { return mErrorCode; } public String getErrorType() { return mErrorType; } }