JavaSVN Home

org.tmatesoft.svn.core
Class SVNException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.tmatesoft.svn.core.SVNException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
SVNAuthenticationException, SVNCancelException

public class SVNException
extends Exception

A main exception class that is used in the JavaSVN library. All other JavaSVN exception classes extend this one. Detailed information on the error (description, error code) is encapsulated inside an error message that is held by an SVNException.

Version:
1.1
Author:
TMate Software Ltd.
See Also:
Serialized Form

Constructor Summary
SVNException(SVNErrorMessage errorMessage)
          Creates an exception given an error message.
SVNException(SVNErrorMessage errorMessage, Throwable cause)
          Creates an exception given an error message and the cause exception.
 
Method Summary
 SVNErrorMessage getErrorMessage()
          Returns an error message provided to this exception object.
 String getMessage()
          Returns the informational message describing the cause of this exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, 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

SVNException

public SVNException(SVNErrorMessage errorMessage)
Creates an exception given an error message.

Parameters:
errorMessage - an error message

SVNException

public SVNException(SVNErrorMessage errorMessage,
                    Throwable cause)
Creates an exception given an error message and the cause exception.

Parameters:
errorMessage - an error message
cause - the real cause of the error
Method Detail

getErrorMessage

public SVNErrorMessage getErrorMessage()
Returns an error message provided to this exception object.

Returns:
an error message that contains details on the error

getMessage

public String getMessage()
Returns the informational message describing the cause of this exception.

Returns:
an informational message

JavaSVN Home

Copyright © 2004-2006 TMate Software Ltd. All Rights Reserved.