Class ClientException

All Implemented Interfaces:
Serializable

public class ClientException extends NativeException
This exception is thrown whenever something goes wrong in the Subversion JavaHL binding's JNI interface.
See Also:
  • Field Details

  • Constructor Details

    • ClientException

      ClientException(String message, String source, int aprError)
      This constructor is only used by the native library.
      Parameters:
      message - A description of the problem.
      source - The error's source.
      aprError - Any associated APR error code for a wrapped svn_error_t.
    • ClientException

      ClientException(ClientException ex)
      This constructor is for backward compat.
  • Method Details

    • fromException

      static ClientException fromException(Throwable t)
      A conversion routine for maintaining backwards compatibility.
      Parameters:
      t - The exception to (potentially) convert.
      Returns:
      t coerced or converted into a ClientException.