All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.media.ConnectionErrorEvent Maven / Gradle / Ivy

The newest version!
/*
 * @(#)ConnectionErrorEvent.java	1.7 98/03/28
 *
 * Copyright 1996-1998 by Sun Microsystems, Inc.,
 * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Sun Microsystems, Inc. ("Confidential Information").  You
 * shall not disclose such Confidential Information and shall use
 * it only in accordance with the terms of the license agreement
 * you entered into with Sun.
 */

package javax.media;

/**
 * A ConnectionErrorEvent is posted when an error occurs within a
 DataSource
 * when obtaining data or communicating with a server.
 **/

public class ConnectionErrorEvent extends ControllerErrorEvent {


    public ConnectionErrorEvent(Controller from) {
        super(from);
    }

    public ConnectionErrorEvent(Controller from, String why) {
        super(from, why);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy