aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/exceptions/FileCopyException.java
blob: 58363c0f55d8bda6c91935f31927d938032029ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
	}
}