Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 539:ce11e889ea4e Android_Skia
Simplify dirty area for coords that should be totally redraw
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Mon, 24 May 2010 16:27:25 +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); } }