Back to project page android-checkers-app.
The source code is released under:
Apache License
If you think the Android project android-checkers-app 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 edu.unlv.sudo.checkers.model.exception; /*from w ww . j av a2s . c om*/ /** * This exception represents an invalid board. */ public class InvalidBoardException extends RuntimeException { private int spacesPerSide; public InvalidBoardException(final int spacesPerSide) { this.spacesPerSide = spacesPerSide; } public int getSpacesPerSide() { return spacesPerSide; } }