All Downloads are FREE. Search and download functionalities are using the official Maven repository.

twitter4jads.internal.models4j.TwitterRuntimeException Maven / Gradle / Ivy

The newest version!
package twitter4jads.internal.models4j;

/**
 * Created by poly on 11/02/14.
 */
public class TwitterRuntimeException extends RuntimeException {

    private final TwitterException twitterException;

    public TwitterRuntimeException(Throwable cause, TwitterException twitterException) {
        super(cause);
        this.twitterException = twitterException;
    }

    public TwitterException getTwitterException() {
        return twitterException;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy