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

javax.net.websocket.ConnectException Maven / Gradle / Ivy

There is a newer version: 1.0-b08
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package javax.net.websocket;

/**
 *  http://java.net/jira/browse/WEBSOCKET_SPEC-47
 * @author dannycoward
 */
public class ConnectException extends Exception {
    
    
    public ConnectException(String message) {
        super(message);
    }
        
    public ConnectException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy