diff options
author | lookshe <github@lookshe.org> | 2016-03-20 02:13:20 +0100 |
---|---|---|
committer | lookshe <github@lookshe.org> | 2016-03-20 02:13:20 +0100 |
commit | d89d7a300058e87a4dbf1b1f5b3fe9275ebcb2ae (patch) | |
tree | fe31255a88760028cebe60a15c6e18b1bf894fab /src/main/java/de/thedevstack/conversationsplus/exceptions/RemoteFileNotFoundException.java | |
parent | 25d3aba4d7dad3edffb92a06b2b018df7ca9b177 (diff) | |
parent | b99714161b48b276242d484cdeddfb3ef8aef4c4 (diff) |
Merge branch 'trz/rename' into trz/rebase
Diffstat (limited to 'src/main/java/de/thedevstack/conversationsplus/exceptions/RemoteFileNotFoundException.java')
-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); + } +} |