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

java.net.SocketException Maven / Gradle / Ivy

package java.net;

import java.io.IOException;

public class SocketException extends IOException {
  private static final long serialVersionUID = 6950780022280181042L;

  public SocketException(final String message) {
    super(message);
  }

  public SocketException() {
    super();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy