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.assembly.exceptions; /*from ww w . j a v a 2 s . c om*/ /**Thrown when the specified field name is invalid*/ @SuppressWarnings("serial") public class InvalidFieldKeyException extends Exception { public InvalidFieldKeyException(String key) { super(String.format("Invalid key was tried to be set: %s: ", key)); } }