protected void startInternal()

in proxy/src/main/java/org/apache/directory/fortress/realm/tomcat/Tc7AccessMgrProxy.java [200:215]


    protected void startInternal() throws LifecycleException
    {
        try
        {
            initialize();
        }
        catch (Exception e)
        {
            String error = CLS_NM + ".startInternal caught Exception=" + e;
            LOG.severe( error );
            e.printStackTrace();
            throw new LifecycleException( error );
        }
        
        super.startInternal();
    }