view Android/java/org/madbutterfly/InvalidStateException.java @ 848:702e4874a58a

Use the center as the default transformaqtion point.
author wycc
date Mon, 20 Sep 2010 21:47:21 +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);
    }
}