Package org.apache.subversion.javahl
Class SubversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
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
Constructors Modifier Constructor Description protectedSubversionException(String message)This constructor is only used by sub-classes.protectedSubversionException(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
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SubversionException
This constructor is only used by sub-classes.- Parameters:
message- A description of the problem.
-
SubversionException
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.
-