Package org.tigris.subversion.javahl
Class ClientException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.tigris.subversion.javahl.SubversionException
org.tigris.subversion.javahl.ClientException
- All Implemented Interfaces:
Serializable
public class ClientException extends SubversionException
This exception is thrown whenever something goes wrong in the
Subversion JavaHL binding's JNI interface.
- See Also:
- Serialized Form
-
Method Summary
Modifier and Type Method Description int
getAprError()
String
getMessage()
String
getSource()
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Method Details
-
getSource
- Returns:
- The error source (e.g. line number).
-
getAprError
public int getAprError()- Returns:
- Any associated APR error code for a wrapped
svn_error_t
.
-
getMessage
- Overrides:
getMessage
in classThrowable
- Returns:
- The description, with
source
andaprError
appended (if any).
-