Class WIMException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    WIMApplicationException, WIMSystemException

    public class WIMException
    extends java.lang.Exception
    Base class representing a virtual member manager exception. This can be extended to create component specific exceptions.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      WIMException()
      Default Constructor
      WIMException​(java.lang.String message)  
      WIMException​(java.lang.String key, java.lang.String message)
      Creates the WIMException.
      WIMException​(java.lang.String key, java.lang.String message, java.lang.Throwable cause)
      Creates the WIMException.
      WIMException​(java.lang.Throwable cause)
      Creates the WIMException.
    • Method Summary

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

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

      • WIMException

        public WIMException()
        Default Constructor
      • WIMException

        public WIMException​(java.lang.String key,
                            java.lang.String message)
        Creates the WIMException.
        Parameters:
        message - The message or message key of the exception.
      • WIMException

        public WIMException​(java.lang.String message)
      • WIMException

        public WIMException​(java.lang.Throwable cause)
        Creates the WIMException.
        Parameters:
        cause - The cause of the exception.
      • WIMException

        public WIMException​(java.lang.String key,
                            java.lang.String message,
                            java.lang.Throwable cause)
        Creates the WIMException.
        Parameters:
        message - The error message.
        cause - The cause of the exception.
    • Method Detail

      • getMessageKey

        public java.lang.String getMessageKey()
        Return the message key.