view Android/java/org/madbutterfly/InvalidStateException.java @ 1442:66609545f7a6

Remove the animation between scene. We need to fix this and put itback latter.
author wycc
date Mon, 11 Apr 2011 13:09:48 +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);
    }
}