PortConflictExceptionpublic class PortConflictException extends Exception
Fields Summary |
---|
private int | port |
Constructors Summary |
---|
public PortConflictException(int port, Exception e)
super(e);
this.port = port;
| public PortConflictException(int port, String msg)
super( msg );
this.port = port;
| public PortConflictException(int port, String msg, Exception e)
super( msg, e );
this.port = port;
|
Methods Summary |
---|
public int | getConflictedPort()
return this.port;
|
|