Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 862:3ce9daa9558b abs_n_rel_center
Scale an object according bbox.orig
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Tue, 21 Sep 2010 00:40:36 +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); } }