Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 703:3457519e3b9c
Add rect and matrix support. The test.svg can be rendered almost correctly now.
author | wycc |
---|---|
date | Fri, 13 Aug 2010 08:16:18 +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); } }