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; /* w w w. jav a 2 s. c o m*/ /**Thrown when a field key is already defined*/ @SuppressWarnings("serial") public class AlreadyDefinedKeyException extends Exception { public AlreadyDefinedKeyException(String key, String location) { super(String.format("Key is already defined: %s, in %s", key, location)); } }