Class TemplateRenderingException

  • All Implemented Interfaces:
    java.io.Serializable

    public class TemplateRenderingException
    extends TemplateException
    Thrown when an error occurs during template rendering.

    Created: 2016. 01. 15.

    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      TemplateRule getTemplateRule()  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • TemplateRenderingException

        public TemplateRenderingException​(java.lang.String msg,
                                          TemplateRule templateRule)
        Instantiates a new TemplateRenderingException.
        Parameters:
        msg - the detail message
        templateRule - the template rule
      • TemplateRenderingException

        public TemplateRenderingException​(java.lang.String msg,
                                          TemplateRule templateRule,
                                          java.lang.Throwable cause)
        Instantiates a new TemplateRenderingException.
        Parameters:
        msg - the detail message
        templateRule - the template rule
        cause - the root cause
    • Method Detail