Back to project page DroidChineseCheckers.
The source code is released under:
Apache License
If you think the Android project DroidChineseCheckers 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.whiterabbit.checkers.exceptions; //from ww w . j a v a2s . c om /** * Created with IntelliJ IDEA. * User: fedepaol * Date: 3/30/13 * Time: 9:56 AM */ public class CantFillException extends Exception{ public CantFillException(String error){ super(error); } }