EAF 7.4 API

com.lutris.util
Class KeywordValueException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.lutris.util.KeywordValueException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ConfigException

public class KeywordValueException
extends java.lang.Exception

Exception for errors accessing a KeywordValueTable object. The errors can include invalid keyword syntax and unknown keywords.

Since:
Jolt1.0
Version:
$Revision: 1.1 $
Author:
Mark Diekhans
See Also:
Serialized Form

Constructor Summary
KeywordValueException(java.lang.String msg)
          Constructs a new exception with the detail message.
KeywordValueException(java.lang.String msg, java.lang.Throwable cause)
          Constructs a new exception with the specified cause and a detail message.
KeywordValueException(java.lang.Throwable cause)
          Constructs a new exception with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

KeywordValueException

public KeywordValueException(java.lang.String msg)
Constructs a new exception with the detail message.

Parameters:
msg - A detailed message describing the expection.

KeywordValueException

public KeywordValueException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.

Parameters:
cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is nonexistent or unknown.

KeywordValueException

public KeywordValueException(java.lang.String msg,
                             java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail message.

Parameters:
msg - A detailed message describing the expection.
cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is nonexistent or unknown.

EAF 7.4 API