Class ESIRendererException

All Implemented Interfaces:
Serializable, LocalizableMessage, Message
Direct Known Subclasses:
ExpressionRendererException

public class ESIRendererException extends ESIException
Subclass of ESIException (and therefore of WTException) which allows clients to determine that the exception was thrown by an ESIRenderer.

Supported API: true

Extendable: true
See Also:
  • Constructor Details

    • ESIRendererException

      public ESIRendererException()
      Default constructor

      Supported API: true
    • ESIRendererException

      public ESIRendererException(String msg)
      Constructs an ESIRendererException with an input localizable standard message.

      Supported API: true
      Parameters:
      msg - - exception message
    • ESIRendererException

      public ESIRendererException(Exception e)
      Constructs an ESIRendererException with an input Exception object.

      Supported API: true
      Parameters:
      e - - Exception
    • ESIRendererException

      public ESIRendererException(String rb, String key, Object[] params)
      Constructs a ESIRendererException with a localizable standard message constructed from the bundle, key, and params.

      Supported API: true
      Parameters:
      rb - the resource bundle the key resides in
      key - the key containing the message in the resource bundle
      params - the parameters to substitute in the message
    • ESIRendererException

      public ESIRendererException(Throwable t, String rb, String key, Object[] params)
      Constructs a ESIRendererException with nested throwable, the bundle, key, and params.

      Supported API: true
      Parameters:
      t - the nested throwable
      rb - the resource bundle the key resides in
      key - the key containing the message in the resource bundle
      params - the parameters to substitute in the message