Class TransletException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    TransletScanFailedException

    public class TransletException
    extends java.lang.RuntimeException
    The Class TransletException.

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

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      TransletException()
      Creates a new TransletException without detail message.
      TransletException​(java.lang.String msg)
      Constructs a TransletException with the specified detail message.
      TransletException​(java.lang.String msg, java.lang.Throwable cause)
      Constructor to create exception to wrap another exception and pass a message.
      TransletException​(java.lang.Throwable cause)
      Constructor to create exception to wrap another exception.
    • Method Summary

      • 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

      • TransletException

        public TransletException()
        Creates a new TransletException without detail message.
      • TransletException

        public TransletException​(java.lang.String msg)
        Constructs a TransletException with the specified detail message.
        Parameters:
        msg - a message to associate with the exception
      • TransletException

        public TransletException​(java.lang.Throwable cause)
        Constructor to create exception to wrap another exception.
        Parameters:
        cause - the real cause of the exception
      • TransletException

        public TransletException​(java.lang.String msg,
                                 java.lang.Throwable cause)
        Constructor to create exception to wrap another exception and pass a message.
        Parameters:
        msg - the detail message
        cause - the real cause of the exception