Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 868:f41ac71266bc
Remove rdman pointer from structure of paints.
Since a pointer of rdman is passed when calling free function of
paint, this pointer can be removed.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Thu, 23 Sep 2010 10:51: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); } }