view Android/java/org/madbutterfly/InvalidStateException.java @ 523:c3fe9e4bdec1 Android_Skia

Fix a bug of a non-initialized variable. pos_cnt is not initialized before used. It causes - tank shows nothing at begining. - dynamic being segmentation fault for any X event at first few seconds.
author Thinker K.F. Li <thinker@branda.to>
date Tue, 22 Dec 2009 11:04:52 +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);
    }
}