blob: b5786990e0cb4f2417758474e496f0b30e3c8084 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package de.thedevstack.conversationsplus.exceptions;
/**
* Created by tzur on 15.12.2015.
*/
public class ImageResizeException extends UiException {
private static final long serialVersionUID = -1010013599112881427L;
public ImageResizeException(int resId) {
super(resId);
}
public ImageResizeException(int resId, Throwable e) {
super(resId, e);
}
}
|