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

hudson.remoting.ChannelClosedException Maven / Gradle / Ivy

Go to download

Contains the bootstrap code to bridge separate JVMs into a single semi-shared space. Reusable outside Hudson.

The newest version!
package hudson.remoting;

import java.io.IOException;

/**
 * Indicates that the channel is already closed.
 *
 * @author Kohsuke Kawaguchi
 */
public class ChannelClosedException extends IOException {
    /**
     * @deprecated
     *      Use {@link #ChannelClosedException(Throwable)}.
     */
    public ChannelClosedException() {
        super("channel is already closed");
    }

    public ChannelClosedException(Throwable cause) {
        super("channel is already closed");
        initCause(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy