Package org.apache.tomee.catalina

Examples of org.apache.tomee.catalina.DeploymentExceptionManager


      final AppInfo info = findAppInfo(new String[] { destination.getAbsolutePath(), destinationWithoutExtension });
            if (info == null) {
                throw new NullPointerException("appinfo not found");
            }

            final DeploymentExceptionManager dem = SystemInstance.get().getComponent(DeploymentExceptionManager.class);
            if (dem.hasDelpoyementFailed(info)) {
                Exception tre = dem.getDelpoyementException(info);
                // we don't need this exceptino anymore
                dem.clearDelpoyementException(info);
                throw tre;
            }

            return info;
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.apache.tomee.catalina.DeploymentExceptionManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.