Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 1011:02d52058d352 refine_backend_if
Make functions of X_supp.c static and fill fields of backend.
- Make most functions in X_supp.c static
- fill fields of backend variable.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Mon, 22 Nov 2010 00:42:30 +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); } }