Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 1211:4bbad66f23b8
Does not listen DOMAttrModified for updateUI
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Tue, 04 Jan 2011 12:03:02 +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); } }