/*
 * Java-Gnome Bindings Library
 *
 * Copyright 1998-2005 the Java-Gnome Team, all rights reserved.
 *
 * The Java-Gnome bindings library is free software distributed under
 * the terms of the GNU Library General Public License version 2.
 */

package org.gnu.gtk;

/**
 * Exception thrown when a user calls a method on a GtkObject that has already
 * been destroyed.
 * 
 * @author Ismael Juma <ismael@juma.me.uk>
 */
public class ObjectDestroyedException extends RuntimeException {

    public ObjectDestroyedException() {
        super();
    }

    public ObjectDestroyedException(String msg) {
        super(msg);
    }
}
