view Android/java/org/madbutterfly/InvalidStateException.java @ 1146:e14ec6d1a661

CHange the implementation to set the transformation matrix only. This is be more friendly for the animation inside the inskcape.
author wycc
date Fri, 24 Dec 2010 14:44:07 +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);
    }
}