view Android/java/org/madbutterfly/InvalidStateException.java @ 1072:cf82361fe5b9 openvg

Disable _fill_and_check() for collision detection
author Thinker K.F. Li <thinker@codemud.net>
date Wed, 01 Dec 2010 19:59: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);
    }
}