org.havi.ui
Class HUIException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.havi.ui.HUIException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
HInvalidLookException, HMatteException

public class HUIException
extends java.lang.Exception

HUIException is a generic exception that indicates that the desired user-interface mechanism cannot be performed for some reason.


The parameters to the constructors are as follows, in cases where parameters are not used, then the constructor should use the default values.

Default parameter values exposed in the constructors

ParameterDescriptionDefault value Set methodGet method
messageMessage explaining why the exception was thrown null-java.lang.Throwable#getMessage

Default parameter values not exposed in the constructors

DescriptionDefault valueSet method Get method
None.

See Also:
Serialized Form

Constructor Summary
HUIException()
          Creates an HUIException object.
HUIException(java.lang.String message)
          Creates an HUIException object with a specified reason string.
 
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

HUIException

public HUIException()
Creates an HUIException object. See the class description for details of constructor parameters and default values.


HUIException

public HUIException(java.lang.String message)
Creates an HUIException object with a specified reason string.

Parameters:
message - the reason why the exception was raised