ServerStartupException.java :  » Google-tech » kotan » kotan » server » embedded » Java Open Source

Java Open Source » Google tech » kotan 
kotan » kotan » server » embedded » ServerStartupException.java
package kotan.server.embedded;

public class ServerStartupException extends Exception {

    private static final long serialVersionUID = 1L;

    public ServerStartupException() {
        super();
    }

    public ServerStartupException(String message, Throwable cause) {
        super(message, cause);
    }

    public ServerStartupException(String message) {
        super(message);
    }

    public ServerStartupException(Throwable cause) {
        super(cause);
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.