view Android/java/org/madbutterfly/InvalidStateException.java @ 1130:37a0f6ab2f91

Lock the UI from refreshing during the update procedure
author wycc
date Sat, 18 Dec 2010 10:00: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);
    }
}