View | Details | Raw Unified | Return to bug 37212
Collapse All | Expand All

(-)Connector.orig.java (-3 / +6 lines)
Lines 1087-1095 Link Here
1087
1087
1088
        try {
1088
        try {
1089
            protocolHandler.start();
1089
            protocolHandler.start();
1090
        } catch (Exception e) {
1090
        } catch (Exception e) {            String errPrefix = "";
1091
            throw new LifecycleException
1091
        if (this.service != null) {
1092
                (sm.getString
1092
            errPrefix += "service.getName(): \"" + this.service.getName()+ "\"; ";
1093
        }
1094
        throw new LifecycleException(errPrefix
1095
                + " " + sm.getString
1093
                 ("coyoteConnector.protocolHandlerStartFailed", e));
1096
                 ("coyoteConnector.protocolHandlerStartFailed", e));
1094
        }
1097
        }
1095
1098

Return to bug 37212