wasDAVClient – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Runtime.Serialization;
3  
4 namespace wasDAVClient.Helpers
5 {
6 public class wasDAVConflictException : wasDAVException
7 {
8 public wasDAVConflictException()
9 {
10 }
11  
12 public wasDAVConflictException(string message)
13 : base(message)
14 {}
15  
16 public wasDAVConflictException(string message, int hr)
17 : base(message, hr)
18 {}
19  
20 public wasDAVConflictException(string message, Exception innerException)
21 : base(message, innerException)
22 {}
23  
24 public wasDAVConflictException(int httpCode, string message, Exception innerException)
25 : base(httpCode, message, innerException)
26 {}
27  
28 public wasDAVConflictException(int httpCode, string message)
29 : base(httpCode, message)
30 {}
31  
32 public wasDAVConflictException(int httpCode, string message, int hr)
33 : base(httpCode, message, hr)
34 {}
35  
36 protected wasDAVConflictException(SerializationInfo info, StreamingContext context)
37 : base(info, context)
38 {}
39 }
40 }