view Android/java/org/madbutterfly/InvalidStateException.java @ 502:a53fc3eff8f1 Android_Skia

Every static native method has the 2rd argument as class object. Second argument of a static native method is passed as the class object that the method belong to.
author Thinker K.F. Li <thinker@branda.to>
date Tue, 01 Dec 2009 22:55:26 +0800
parents 1b6228092a57
children c468e397614d
line wrap: on
line source

package org.madbutterfly;

import java.lang.Exception;

class InvalidStateException extends Exception {
    public InvalidStateException() {
	super();
    }
    public InvalidStateException(String msg) {
	super(msg);
    }
}