Back to project page transloadit-Android-sdk.
The source code is released under:
MIT License
If you think the Android project transloadit-Android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package hu.szabot.transloadit.exceptions; // w ww. j a va 2s .c om import java.io.File; /**Thrown when a File not openable or not readable*/ @SuppressWarnings("serial") public class FileNotOpenableException extends Exception { public FileNotOpenableException(File file) { super(String.format("File: %s not exist or directory or not readable", file.getAbsoluteFile())); } }