Package com.volantis.mcs.protocols.renderer

Examples of com.volantis.mcs.protocols.renderer.RendererException


        } else if (type == FormatType.TEMPORAL_FORMAT_ITERATOR) {
            renderer = temporalFormatIteratorRenderer;
        }

        if (renderer == null) {
            throw new RendererException("No valid renderer for " + format +
                                        " could be found");
        }

        return renderer;
    }
View Full Code Here


                // Finished styling the pane and its contents.
                formatStylingEngine.endStyleable(pane);
            }
        } catch (IOException e) {
            throw new RendererException(exceptionLocalizer.format(
                    "renderer-error",
                    instance.getFormat()), e);
        } catch (ProtocolException e) {
            throw new RendererException(exceptionLocalizer.format(
                    "renderer-error",
                    instance.getFormat()), e);
        }
    }
View Full Code Here

        VolantisProtocol protocol = pageContext.getProtocol();
        try {
            protocol.writeFragmentLink(a);
        } catch (ProtocolException pe) {
            throw new RendererException(
                    exceptionLocalizer.format("renderer-error", destination),
                    pe);
        }
   
        formatStylingEngine.endStyleable(source);
View Full Code Here

            // to avoid nesting too many levels of exception.
            if (e.getCause() instanceof RendererException &&
                    e.getMessage() == null) {
                throw (RendererException) e.getCause();
            } else {
                throw new RendererException(e);
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.protocols.renderer.RendererException

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.