view Android/java/org/madbutterfly/InvalidStateException.java @ 788:7ec13634c97d

Add holder for animate
author Thinker K.F. Li <thinker@codemud.net>
date Tue, 31 Aug 2010 02:36:01 +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);
    }
}