Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 847:dfe28355bded
Fix the location of the text elements.
author | wycc |
---|---|
date | Sun, 19 Sep 2010 19:28:33 +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); } }