blob: 858b4563c06b88820fbb9135c20b8e3512691236 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package de.thedevstack.conversationsplus.exceptions;
public class FileCopyException extends UiException {
private static final long serialVersionUID = -1010013599132881427L;
public FileCopyException(int resId) {
super(resId);
}
public FileCopyException(int resId, Throwable e) {
super(resId, e);
}
}
|