Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 649:2030e5d9f7f7
Support return value for methodes of JS binding
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Thu, 29 Jul 2010 01:37:15 +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); } }