wt.util.range
Class RangeException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bywt.util.WTException
              extended bywt.util.range.RangeException
All Implemented Interfaces:
LocalizableMessage, Message, Serializable

public class RangeException
extends WTException
implements Serializable



Supported API: false

Extendable: false

See Also:
Serialized Form

Field Summary
private static String CLASSNAME
           
private static String RESOURCE
           
 
Fields inherited from class wt.util.WTException
GETMESSAGE_LINE_SEPARATOR, LINE_SEPARATOR, SPACE_SEPARATOR, TOSTRING_LINE_SEPARATOR
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
RangeException(Exception ex)
          Construct a RangeException wrapper for another exception.
RangeException(Exception ex, String message)
          Constract a RangeException wrapper for an exception with a non-localizable message.
RangeException(Exception ex, String resource_bundle_name, String key, Object[] params)
          Construct a localizable RangeException with embedded exception.
RangeException(String message)
          Constructs a RangeException with a non-localizable message
RangeException(String resource_bundle_name, String key, Object[] params)
          Constructs a localizable RangeException
 
Methods inherited from class wt.util.WTException
getAdditionalMessageArray, getAdditionalMessages, getAdditionalMessages, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, getStandardMessage, getStandardMessage, printStackTrace, printStackTrace, printStackTrace, setLocalizedMessage, toString, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

RESOURCE

private static final String RESOURCE
See Also:
Constant Field Values

CLASSNAME

private static final String CLASSNAME
Constructor Detail

RangeException

public RangeException(String message)
Constructs a RangeException with a non-localizable message

Parameters:
message - String - non-localizable text
See Also:
WTException

RangeException

public RangeException(String resource_bundle_name,
                      String key,
                      Object[] params)
Constructs a localizable RangeException

Parameters:
resource_bundle_name - String - naming the resource bundle to use
key - String - used as an index into the ResourceBundle
params - Object[] - array of values to substitute into the message.

RangeException

public RangeException(Exception ex)
Construct a RangeException wrapper for another exception.

Parameters:
ex - Exception - the original culprit causing the exception

RangeException

public RangeException(Exception ex,
                      String message)
Constract a RangeException wrapper for an exception with a non-localizable message.

Parameters:
ex - Exception - the original culprit causing the exception
message - String - non-localizable text

RangeException

public RangeException(Exception ex,
                      String resource_bundle_name,
                      String key,
                      Object[] params)
Construct a localizable RangeException with embedded exception.

Parameters:
ex - Exception - the original culprit causing the exception
resource_bundle_name - String - naming the resource bundle to use
key - String - used as an index into the ResourceBundle
params - Object[] - array of values to substitute into the message.
See Also:
WTException