Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 1392:cd5fb45bc247
Check if the scenes is defined. Disable the changeScene function if the scenes is not defined for the pure MB program.
author | wycc |
---|---|
date | Sun, 27 Mar 2011 08:27:03 +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); } }