com.sas.iom
Class WorkspaceFactoryException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.sas.net.util.RuntimeWrapperException
                          |
                          +--com.sas.iom.WorkspaceFactoryException

public class WorkspaceFactoryException
extends RuntimeWrapperException

The exception class for the WorkspaceFactory. Sometimes this class is merely a wrapper for an exception throw from deep within the factory.

See Also:
Serialized Form

Constructor Summary
WorkspaceFactoryException()
          No-argument constructor.
WorkspaceFactoryException(java.lang.String message)
          Constructor with message.
WorkspaceFactoryException(java.lang.String message, java.lang.Throwable nestedException)
          Wrapper constructor.
WorkspaceFactoryException(java.lang.Throwable nestedException)
          Wrapper constructor.
 
Methods inherited from class com.sas.net.util.RuntimeWrapperException
fillInStackTrace, getLocalizedMessage, getMessage, getNestedException, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WorkspaceFactoryException

public WorkspaceFactoryException()
No-argument constructor.

WorkspaceFactoryException

public WorkspaceFactoryException(java.lang.String message)
Constructor with message.
Parameters:
message - a message adding detail to the exception

WorkspaceFactoryException

public WorkspaceFactoryException(java.lang.Throwable nestedException)
Wrapper constructor.
Parameters:
nestedException - exception being wrapped

WorkspaceFactoryException

public WorkspaceFactoryException(java.lang.String message,
                                 java.lang.Throwable nestedException)
Wrapper constructor.
Parameters:
message - a message to include in the exception.
nestedException - an exception being wrapped.