Class LocalizedException

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

    public class LocalizedException
    extends java.lang.Exception
    Base class for all Exceptions with localized messages.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      LocalizedException​(ErrorBundle message)
      Constructs a new LocalizedException with the specified localized message.
      LocalizedException​(ErrorBundle message, java.lang.Throwable throwable)
      Constructs a new LocalizedException with the specified localized message and cause.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Throwable getCause()  
      ErrorBundle getErrorMessage()
      Returns the localized error message of the exception.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, 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

      • LocalizedException

        public LocalizedException​(ErrorBundle message)
        Constructs a new LocalizedException with the specified localized message.
        Parameters:
        message - the ErrorBundle that contains the message for the exception
      • LocalizedException

        public LocalizedException​(ErrorBundle message,
                                  java.lang.Throwable throwable)
        Constructs a new LocalizedException with the specified localized message and cause.
        Parameters:
        message - the ErrorBundle that contains the message for the exception
        throwable - the cause
    • Method Detail

      • getErrorMessage

        public ErrorBundle getErrorMessage()
        Returns the localized error message of the exception.
        Returns:
        the localized error message as ErrorBundle
      • getCause

        public java.lang.Throwable getCause()
        Overrides:
        getCause in class java.lang.Throwable