
hudson.remoting.ChannelClosedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hudson-remoting Show documentation
Show all versions of hudson-remoting Show documentation
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