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 w w w.ja v a2s . co m*/ /** * The exception must be fired if the "app.properties" can not be found or be opened. */ public final class CanNotOpenOrFindAppPropertiesException extends RuntimeException{ @Override public String getMessage() { return "Can't find app.properties."; } @Override public String toString() { return getMessage(); } }