com.wm.app.b2b.server
Class ServiceSetupException

java.lang.Object
  extended by com.wm.app.b2b.server.ServerException
      extended by com.wm.app.b2b.server.ServiceSetupException

public class ServiceSetupException
extends com.wm.app.b2b.server.ServerException


Constructor Summary
ServiceSetupException()
          Constructs a ServiceSetupException.
ServiceSetupException(java.lang.Class bundleClass, java.lang.String bundleKey, java.lang.String sourceId)
          Constructs a ServiceSetupException using the specified parameters as input.
ServiceSetupException(java.lang.Class bundleClass, java.lang.String bundleKey, java.lang.String sourceId, java.lang.Object[] subs)
          Constructs a ServiceSetupException using the specified parameters as input.
ServiceSetupException(java.lang.Class bundleClass, java.lang.String bundleKey, java.lang.String sourceId, java.lang.String parameter)
          Constructs a ServiceSetupException using the specified parameters as input.
ServiceSetupException(java.lang.String msg)
          Constructs a ServiceSetupException with a specified message.
ServiceSetupException(java.lang.Throwable t)
          Constructs a ServiceSetupException using the specified Throwable object as input.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServiceSetupException

public ServiceSetupException()
Constructs a ServiceSetupException.


ServiceSetupException

public ServiceSetupException(java.lang.Throwable t)
Constructs a ServiceSetupException using the specified Throwable object as input.

Parameters:
t - A Throwable object that contains error information.

ServiceSetupException

public ServiceSetupException(java.lang.String msg)
Constructs a ServiceSetupException with a specified message.

Parameters:
msg - A String specifying the detailed error message for this ServiceSetupException.

ServiceSetupException

public ServiceSetupException(java.lang.Class bundleClass,
                             java.lang.String bundleKey,
                             java.lang.String sourceId,
                             java.lang.String parameter)
Constructs a ServiceSetupException using the specified parameters as input.

Parameters:
bundleClass - A Class representing the resource bundle class. For example, AccessExceptionBundle.class.
bundleKey - A String specifying the identifier used to map to a particular message or message set that is contained in the resource bundle.
sourceId - A String specifying a sourceId for this ServiceSetupException.
parameter - A String specifying a substitution value.

ServiceSetupException

public ServiceSetupException(java.lang.Class bundleClass,
                             java.lang.String bundleKey,
                             java.lang.String sourceId)
Constructs a ServiceSetupException using the specified parameters as input.

Parameters:
bundleClass - A Class representing the resource bundle class. For example, AccessExceptionBundle.class.
bundleKey - A String specifying the identifier used to map to a particular message or message set that is contained in the resource bundle.
sourceId - A String specifying a sourceId for this ServiceSetupException.

ServiceSetupException

public ServiceSetupException(java.lang.Class bundleClass,
                             java.lang.String bundleKey,
                             java.lang.String sourceId,
                             java.lang.Object[] subs)
Constructs a ServiceSetupException using the specified parameters as input.

Parameters:
bundleClass - A Class representing the resource bundle class. For example, AccessExceptionBundle.class.
bundleKey - A String specifying the identifier used to map to a particular message or message set that is contained in the resource bundle.
sourceId - A String specifying a sourceId for this ServiceSetupException.
subs - An Object array containing substitution values that correspond to a the exception.