package de.thedevstack.conversationsplus.exceptions; import java.io.IOException; /** * Created by lookshe on 15.03.16. * * Exception class if HTTP status code 404 occured */ public class RemoteFileNotFoundException extends IOException { private static final long serialVersionUID = -1010013599132881427L; public RemoteFileNotFoundException() { super(); } public RemoteFileNotFoundException(Throwable e) { super(e); } }