01: /*
02: * ====================================================================
03: * Copyright (c) 2004-2008 TMate Software Ltd. All rights reserved.
04: *
05: * This software is licensed as described in the file COPYING, which
06: * you should have received as part of this distribution. The terms
07: * are also available at http://svnkit.com/license.html
08: * If newer versions of this license are posted there, you may use a
09: * newer version instead, at your option.
10: * ====================================================================
11: */
12:
13: package org.tmatesoft.svn.core;
14:
15: /**
16: * An exception class that is used to signal about the fact that errors
17: * occured exactly during an authentication try. Provides the same kind
18: * of information as its base class does.
19: *
20: * @version 1.1.1
21: * @author TMate Software Ltd.
22: * @see SVNException
23: */
24: public class SVNAuthenticationException extends SVNException {
25:
26: /**
27: * Creates a new authentication exception given detailed error
28: * information and the original cause.
29: *
30: * @param errorMessage an error message
31: * @param cause an original cause
32: */
33: public SVNAuthenticationException(SVNErrorMessage errorMessage,
34: Throwable cause) {
35: super (errorMessage, cause);
36: }
37:
38: /**
39: * Creates a new authentication exception given detailed error
40: * information.
41: *
42: * @param errorMessage an error message
43: */
44: public SVNAuthenticationException(SVNErrorMessage errorMessage) {
45: super(errorMessage);
46: }
47: }
|