aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java
diff options
context:
space:
mode:
authorsteckbrief <steckbrief@chefmail.de>2015-11-06 21:41:29 +0100
committersteckbrief <steckbrief@chefmail.de>2015-11-06 21:41:29 +0100
commit6bc277152a8e1bcf5347d3e1d60c93dfc904ca23 (patch)
treef8ff8a13090f774243d2744eaba0185877245a14 /src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java
parent0575767152abc391fd1d0241d9cbae154236df70 (diff)
parent8838a5094812e0540ccfef3334e49e1a5c1a564b (diff)
Merge remote-tracking branch 'remotes/origin/trz/rename' into trz/rebase
Diffstat (limited to 'src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java')
-rw-r--r--src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java b/src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java
new file mode 100644
index 00000000..58363c0f
--- /dev/null
+++ b/src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java
@@ -0,0 +1,14 @@
+package de.thedevstack.conversationsplus.exceptions;
+
+public class FileCopyException extends Exception {
+ private static final long serialVersionUID = -1010013599132881427L;
+ private int resId;
+
+ public FileCopyException(int resId) {
+ this.resId = resId;
+ }
+
+ public int getResId() {
+ return resId;
+ }
+} \ No newline at end of file