diff options
author | lookshe <github@lookshe.org> | 2016-03-20 02:14:45 +0100 |
---|---|---|
committer | lookshe <github@lookshe.org> | 2016-03-20 02:14:45 +0100 |
commit | c9b7ed3d3f6cde5e78bf0fa7a77eae81f13cbc09 (patch) | |
tree | 84fcd6dca2e2b1904eca61fad16a85e465b87fae /src/main/java/de | |
parent | 98e61f189c5f8bce7a001997fa2352c0c27f2778 (diff) | |
parent | d89d7a300058e87a4dbf1b1f5b3fe9275ebcb2ae (diff) |
Merge branch 'trz/rebase' into trz/merge_1.11.1trz/merge_1.11.1
Diffstat (limited to 'src/main/java/de')
-rw-r--r-- | src/main/java/de/thedevstack/conversationsplus/exceptions/RemoteFileNotFoundException.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/main/java/de/thedevstack/conversationsplus/exceptions/RemoteFileNotFoundException.java b/src/main/java/de/thedevstack/conversationsplus/exceptions/RemoteFileNotFoundException.java new file mode 100644 index 00000000..41a548cb --- /dev/null +++ b/src/main/java/de/thedevstack/conversationsplus/exceptions/RemoteFileNotFoundException.java @@ -0,0 +1,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); + } +} |