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

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

There is a newer version: 2.2
Show newest version
package twitter4j.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