diff options
Diffstat (limited to 'src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java')
-rw-r--r-- | src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java | 14 |
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 |