view Android/java/org/madbutterfly/InvalidStateException.java @ 1448:e18c51c1c48f

Add setFrameRate
author wycc
date Mon, 11 Apr 2011 20:26:18 +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);
    }
}