Class TransletNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class TransletNotFoundException
    extends TransletException
    This exception will be thrown when a translet not found.

    Created: 2008. 01. 07 AM 3:35:55

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      TransletNotFoundException​(java.lang.String transletName)
      Constructor to create exception with a message.
      TransletNotFoundException​(java.lang.String transletName, java.lang.Throwable cause)
      Constructor to create exception to wrap another exception and pass a message.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getTransletName()  
      • 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

      • TransletNotFoundException

        public TransletNotFoundException​(java.lang.String transletName)
        Constructor to create exception with a message.
        Parameters:
        transletName - the translet name
      • TransletNotFoundException

        public TransletNotFoundException​(java.lang.String transletName,
                                         java.lang.Throwable cause)
        Constructor to create exception to wrap another exception and pass a message.
        Parameters:
        transletName - the translet name
        cause - the real cause of the exception
    • Method Detail

      • getTransletName

        public java.lang.String getTransletName()