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; //from w w w.j a va 2 s.com /** * A wrapper class for exceptions. */ public class BoxAndroidLibException extends Exception implements IBoxAndroidLibException { private static final long serialVersionUID = 1L; private Exception rawException; /** * Constructor. */ public BoxAndroidLibException() { super(); } /** * Constructor. * * @param e * The raw exception. */ public BoxAndroidLibException(final Exception e) { this.rawException = e; } /** * Get the raw exception. * * @return exception */ public Exception getRawException() { return rawException; } }