Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 1454:e22df2f3bffe
Provide number of children for coords
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Wed, 13 Apr 2011 19:57:58 +0800 |
parents | c468e397614d |
children |
line wrap: on
line source
package org.madbutterfly; import java.lang.Exception; public class InvalidStateException extends Exception { public InvalidStateException() { super(); } public InvalidStateException(String msg) { super(msg); } }