org.apache.subversion.javahl
Class SubversionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.apache.subversion.javahl.SubversionException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ClientException, RetryOpenSession, SVNUtil.CredentialTypeMismatch

public class SubversionException
extends Exception

This checked exception is thrown whenever something goes wrong with the Subversion JavaHL bindings.

See Also:
Serialized Form

Constructor Summary
protected SubversionException(String message)
          This constructor is only used by sub-classes.
protected SubversionException(String message, Throwable cause)
          This constructor is only used by sub-classes and the native implementation.
 
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

SubversionException

protected SubversionException(String message)
This constructor is only used by sub-classes.

Parameters:
message - A description of the problem.

SubversionException

protected SubversionException(String message,
                              Throwable cause)
This constructor is only used by sub-classes and the native implementation.

Parameters:
message - A description of the problem.
cause - The root cause of the exception.