Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 528:d687d3395264 Android_Skia
Clear variables and draw root coord.
Although root coord is never in zeroing list, now, it still need to be
redrawed after redrawing other zeroed coords.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Wed, 23 Dec 2009 10:33:51 +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); } }