aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidAsync/src/com/koushikdutta/async/http/RedirectLimitExceededException.java
blob: 42921bbad2da16da6f9985738c8fb448c41d297d (plain)
1
2
3
4
5
6
7
package com.koushikdutta.async.http;

public class RedirectLimitExceededException extends Exception {
    public RedirectLimitExceededException(String message) {
        super(message);
    }
}