wasDAVClient – Diff between revs 1 and 3

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 1 Rev 3
1 using System; 1 using System;
2 using System.Runtime.Serialization; 2 using System.Runtime.Serialization;
3   3  
4 namespace wasDAVClient.Helpers 4 namespace wasDAVClient.Helpers
5 { 5 {
6 public class wasDAVConflictException : wasDAVException 6 public class wasDAVConflictException : wasDAVException
7 { 7 {
8 public wasDAVConflictException() 8 public wasDAVConflictException()
9 { 9 {
10 } 10 }
11   11  
12 public wasDAVConflictException(string message) 12 public wasDAVConflictException(string message)
-   13 : base(message)
13 : base(message) 14 {
14 {} 15 }
15   16  
-   17 public wasDAVConflictException(string message, int hr)
16 public wasDAVConflictException(string message, int hr) 18 : base(message, hr)
17 : base(message, hr) 19 {
18 {} 20 }
-   21  
19   22 public wasDAVConflictException(string message, Exception innerException)
20 public wasDAVConflictException(string message, Exception innerException) 23 : base(message, innerException)
21 : base(message, innerException) 24 {
-   25 }
22 {} 26  
23   27 public wasDAVConflictException(int httpCode, string message, Exception innerException)
24 public wasDAVConflictException(int httpCode, string message, Exception innerException) 28 : base(httpCode, message, innerException)
-   29 {
25 : base(httpCode, message, innerException) 30 }
26 {} 31  
27   32 public wasDAVConflictException(int httpCode, string message)
-   33 : base(httpCode, message)
28 public wasDAVConflictException(int httpCode, string message) 34 {
29 : base(httpCode, message) 35 }
30 {} 36  
-   37 public wasDAVConflictException(int httpCode, string message, int hr)
31   38 : base(httpCode, message, hr)
32 public wasDAVConflictException(int httpCode, string message, int hr) 39 {
33 : base(httpCode, message, hr) 40 }
34 {} 41  
35   42 protected wasDAVConflictException(SerializationInfo info, StreamingContext context)
36 protected wasDAVConflictException(SerializationInfo info, StreamingContext context) 43 : base(info, context)
37 : base(info, context) 44 {
38 {} 45 }
39 } 46 }
40 } 47 }
41   48  
42
Generated by GNU Enscript 1.6.5.90.
49
Generated by GNU Enscript 1.6.5.90.
43   50  
44   51  
45   52