com.ptc.windchill.upgrade.history
Class IUHException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bywt.util.WTException
              extended bycom.ptc.windchill.upgrade.history.IUHException
All Implemented Interfaces:
LocalizableMessage, Message, Serializable

public class IUHException
extends WTException

For wt.util.version specific exceptions.

See Also:
WTException, Serialized Form

Field Summary
 
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
IUHException(Exception ex)
          Construct a IUHException wrapper for another exception.
IUHException(Exception ex, String message)
          Constract a IUHException wrapper for an exception with a non-localizable message.
IUHException(Exception ex, String resource_bundle_name, String key, Object[] params)
          Construct a localizable IUHException with embedded exception.
IUHException(String message)
          Constructs a IUHException with a non-localizable message
IUHException(String resource_bundle_name, String key, Object[] params)
          Constructs a localizable IUHException
 
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
 

Constructor Detail

IUHException

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

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

IUHException

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

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.
See Also:
WTException

IUHException

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

Parameters:
ex - Exception - the original culprit causing the exception
See Also:
WTException

IUHException

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

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

IUHException

public IUHException(Exception ex,
                    String resource_bundle_name,
                    String key,
                    Object[] params)
Construct a localizable IUHException 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