view Android/java/org/madbutterfly/InvalidStateException.java @ 529:0160cdabaa51 Android_Skia

Add a known issue. It causes a segmentation fault to call XEventsQueued() after receiving first Expose event and before redrawing something to the window.
author Thinker K.F. Li <thinker@branda.to>
date Wed, 23 Dec 2009 10:41:19 +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);
    }
}