view Android/java/org/madbutterfly/InvalidStateException.java @ 859:e2bf6a93bb1c abs_n_rel_center

Make icons extented to down direction. By move center of icons to top edge of icons.
author Thinker K.F. Li <thinker@codemud.net>
date Mon, 20 Sep 2010 22:43:44 +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);
    }
}