Package com.volantis.mcs.xdime

Examples of com.volantis.mcs.xdime.XDIMEException


            // Push the region instance onto the container stack.
            pageContext.pushContainerInstance(anonymousRegionInstance);
        } catch (RepositoryException e) {
            logger.error("repository-exception", e);
            throw new XDIMEException(e);
        }
    }
View Full Code Here


            try {
                mediaAgent.waitForComplete();
            } catch (MediaAgentException e) {
                logger.error("rendering-error", getTagName(), e);

                throw new XDIMEException(exceptionLocalizer.format(
                        "rendering-error", getTagName()), e);
            }
        }
    }
View Full Code Here

            VolantisProtocol protocol = getProtocol(context);
            protocol.setWriteHead(true);
            protocol.openCanvasPage(canvasAttributes);
        } catch (PolicyException e) {
            logger.error("unexpected-exception", e);
            throw new XDIMEException(e);
        } catch (RepositoryException e) {
            logger.error("repository-exception", e);
            throw new XDIMEException(e);
        } catch (IOException e) {
            logger.error("unexpected-ioexception", e);
            throw new XDIMEException(e);
        } catch (ProtocolException e) {
            logger.error("rendering-error", getTagName(), e);
            throw new XDIMEException(exceptionLocalizer.format(
                    "rendering-error", getTagName()), e);
        }

        // The previous call to protocol.openCanvas will push the page and body
        // output buffers onto the stack, hiding the output buffer for the
View Full Code Here

            // Push the region instance onto the container stack.
            pageContext.pushContainerInstance(anonymousRegionInstance);
        } catch (RepositoryException e) {
            logger.error("repository-exception", e);
            throw new XDIMEException(e);
        }
    }
View Full Code Here

            VolantisProtocol protocol = getProtocol(context);
            protocol.writeOpenDiv((DivAttributes)protocolAttributes);
        } catch (ProtocolException e) {
            logger.error("rendering-error", getTagName(), e);

            throw new XDIMEException(exceptionLocalizer.format(
                "rendering-error", getTagName()), e);
        }
        return XDIMEResult.PROCESS_ELEMENT_BODY;
    }
View Full Code Here

            try {
                module.renderClose(protocol);
            } catch (ProtocolException e) {
                logger.error("rendering-error", getTagName(), e);

                throw new XDIMEException(exceptionLocalizer.format(
                    "rendering-error", getTagName()), e);
            }
        }
       
        // Wait for MediaAgent to complete all its requests and invoke all
View Full Code Here

                debugTimer.stopTimer(relativeRequestURL+ " page runtime = ");
            }

        } catch (IOException e) {
            logger.error("unexpected-ioexception", e);
            throw new XDIMEException(e);
        } catch (ProtocolException e) {
            logger.error("unexpected-exception", e);
            throw new XDIMEException(e);
        }
    }
View Full Code Here

            try {
                mediaAgent.waitForComplete();
            } catch (MediaAgentException e) {
                logger.error("rendering-error", getTagName(), e);
   
                throw new XDIMEException(exceptionLocalizer.format(
                        "rendering-error", getTagName()), e);
            }
        }       
    }
View Full Code Here

                protocol.writeOpenListItem((ListItemAttributes) protocolAttributes);
            }
        } catch (ProtocolException e) {
            logger.error("rendering-error", getTagName(), e);

            throw new XDIMEException(exceptionLocalizer.format(
                    "rendering-error", getTagName()), e);
        }
        return XDIMEResult.PROCESS_ELEMENT_BODY;
    }
View Full Code Here

                // default rendring
                protocol.writeCloseListItem((ListItemAttributes) protocolAttributes);               
            }           
        } catch (ProtocolException e) {
            logger.error("rendering-error", getTagName(), e);
            throw new XDIMEException(exceptionLocalizer.format(
                    "rendering-error", getTagName()), e);
        }
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.xdime.XDIMEException

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.