Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 717:b822b1912d67
Paint with black for unspecified, not "none", fill and stroke.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Sat, 14 Aug 2010 23:52:43 +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); } }