Back to project page ara-twitter.
The source code is released under:
Apache License
If you think the Android project ara-twitter 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.bakingcode.io.twitter.exceptions; /* w w w . j a v a 2 s. co m*/ import com.bakingcode.io.twitter.model.IError; /** * Exception that handles a twitter error */ public class TwitterErrorRequestException extends Exception { /** * Serial Id */ private static final long serialVersionUID = -4473333355716260005L; // /////////////////////////////////////////////////////////////////////////// // Fields // /////////////////////////////////////////////////////////////////////////// /** * Error object */ private IError error; // /////////////////////////////////////////////////////////////////////////// // Constructors // /////////////////////////////////////////////////////////////////////////// /** * Default constructor with twitter error parameter * @param error eror parameter */ public TwitterErrorRequestException(IError error) { this.error = error; } // /////////////////////////////////////////////////////////////////////////// // Get & Set // /////////////////////////////////////////////////////////////////////////// /** * @return the error */ public IError getError() { return error; } /** * @param error the error to set */ public void setError(IError error) { this.error = error; } }