Back to project page Chopping.
The source code is released under:
Apache License
If you think the Android project Chopping 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 com.chopping.exceptions; //from ww w . ja va2 s .com /** * Exception must e fired when the "app.properties" is invalid. * For example: * * app_config=.... * app_config_fallback=.... * * These two properties must be included in. */ public final class InvalidAppPropertiesException extends RuntimeException{ @Override public String getMessage() { return "app.properties doesn't have standard properties like\napp_config\napp_config_fallback\netc."; } @Override public String toString() { return getMessage(); } }