aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/exceptions/RemoteFileNotFoundException.java
blob: 41a548cbe1ebf407133f738c67001fdf05d5f0eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package de.thedevstack.conversationsplus.exceptions;

import java.io.IOException;

/**
 * Created by lookshe on 15.03.16.
 *
 * Exception class if HTTP status code 404 occured
 */
public class RemoteFileNotFoundException extends IOException {
    private static final long serialVersionUID = -1010013599132881427L;

    public RemoteFileNotFoundException() {
        super();
    }

    public RemoteFileNotFoundException(Throwable e) {
        super(e);
    }
}