wasDAVClient – Diff between revs 1 and 3

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 3
Line 8... Line 8...
8 { 8 {
9 public wasDAVException() 9 public wasDAVException()
10 { 10 {
11 } 11 }
Line 12... Line 12...
12   12  
13 public wasDAVException(string message) 13 public wasDAVException(string message)
-   14 : base(message)
14 : base(message) 15 {
Line 15... Line 16...
15 {} 16 }
16   17  
-   18 public wasDAVException(string message, int hr)
17 public wasDAVException(string message, int hr) 19 : base(message, hr)
Line 18... Line 20...
18 : base(message, hr) 20 {
19 {} 21 }
-   22  
20   23 public wasDAVException(string message, Exception innerException)
Line 21... Line 24...
21 public wasDAVException(string message, Exception innerException) 24 : base(message, innerException)
22 : base(message, innerException) 25 {
-   26 }
23 {} 27  
Line 24... Line 28...
24   28 public wasDAVException(int httpCode, string message, Exception innerException)
25 public wasDAVException(int httpCode, string message, Exception innerException) 29 : base(httpCode, message, innerException)
-   30 {
26 : base(httpCode, message, innerException) 31 }
Line 27... Line 32...
27 {} 32  
28   33 public wasDAVException(int httpCode, string message)
-   34 : base(httpCode, message)
29 public wasDAVException(int httpCode, string message) 35 {
Line 30... Line 36...
30 : base(httpCode, message) 36 }
31 {} 37  
-   38 public wasDAVException(int httpCode, string message, int hr)
32   39 : base(httpCode, message, hr)
Line 33... Line 40...
33 public wasDAVException(int httpCode, string message, int hr) 40 {
34 : base(httpCode, message, hr) 41 }
35 {} 42  
36   43 protected wasDAVException(SerializationInfo info, StreamingContext context)
37 protected wasDAVException(SerializationInfo info, StreamingContext context) 44 : base(info, context)
38 : base(info, context) 45 {
Line 39... Line 46...
39 {} 46 }