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); } }