Subversion Repositories XServices

Rev

Rev 6 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6 Rev 46
Line 26... Line 26...
26
 *
26
 *
27
 * @author Brian Rosenberger, bru@brutex.de
27
 * @author Brian Rosenberger, bru@brutex.de
28
 */
28
 */
29
public class XServicesFault extends Exception {
29
public class XServicesFault extends Exception {
Line -... Line 30...
-
 
30
 
-
 
31
    /**
-
 
32
	 * 
-
 
33
	 */
-
 
34
	private static final long serialVersionUID = -6779279189376374820L;
30
 
35
 
31
    public XServicesFault(String message, Exception e) {
36
	public XServicesFault(String message, Exception e) {
32
        this(message, e.getCause());
37
        this(message, e.getCause());
Line 33... Line 38...
33
    }
38
    }
34
 
39