com.novell.nds.dirxml.shimhost
Class ShimException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.novell.nds.dirxml.shimhost.ShimException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FatalShimException, ShimHost.MethodException

public class ShimException
extends Exception

Exception class thrown when a Throwable is caught from shim code, or a fatal error is returned from a shim.

See Also:
Serialized Form

Constructor Summary
ShimException(String detail)
          Construct a ShimException with the passed detail message.
ShimException(String detail, Throwable cause)
          Construct a ShimException with the passed detail message and Throwable cause.
 
Method Summary
 
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

ShimException

public ShimException(String detail)
Construct a ShimException with the passed detail message.

Parameters:
detail - message

ShimException

public ShimException(String detail,
                     Throwable cause)
Construct a ShimException with the passed detail message and Throwable cause.

Parameters:
detail - message
cause - underlying cause (reason this ShimException is being thrown)