view Android/java/org/madbutterfly/InvalidStateException.java @ 829:379fd510ba38

Define accessor for the opacity attribute of the coord
author wycc
date Wed, 15 Sep 2010 01:17:43 +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);
    }
}