Back to project page box-android-sdk-v2-master.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRI...
If you think the Android project box-android-sdk-v2-master 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.box.boxandroidlibv2.exceptions; /* www .j av a2 s . c o m*/ /** * Exception indicating user terminates action. */ public class UserTerminationException extends BoxAndroidLibException { private static final long serialVersionUID = 1L; private Object mContext; /** * Constructor. */ public UserTerminationException() { super(); } /** * Constructor. * * @param context * context related to this exception */ public UserTerminationException(final Object context) { super(); this.mContext = context; } /** * Get context context related to this exception. * * @return context */ public Object getContext() { return mContext; } }