FileDocCategorySizeDatePackage
PortConflictException.javaAPI DocGlassfish v2 API2488Fri May 04 22:35:52 BST 2007com.sun.enterprise.server.ss.provider

PortConflictException

public 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 intgetConflictedPort()

        return this.port;