wasDAVClient – Blame information for rev 7

Subversion Repositories:
Rev:
Rev Author Line No. Line
5 office 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2016 - License: GNU GPLv3 //
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. //
5 ///////////////////////////////////////////////////////////////////////////
7 office 6 // Originally based on: WebDAV .NET client by Sergey Kazantsev
7  
8 using System;
9 using System.Runtime.Serialization;
10  
11 namespace wasDAVClient.Helpers
12 {
13 public class wasDAVConflictException : wasDAVException
14 {
15 public wasDAVConflictException()
16 {
17 }
18  
19 public wasDAVConflictException(string message)
20 : base(message)
21 {
22 }
23  
24 public wasDAVConflictException(string message, int hr)
25 : base(message, hr)
26 {
27 }
28  
29 public wasDAVConflictException(string message, Exception innerException)
30 : base(message, innerException)
31 {
32 }
33  
34 public wasDAVConflictException(int httpCode, string message, Exception innerException)
35 : base(httpCode, message, innerException)
36 {
37 }
38  
39 public wasDAVConflictException(int httpCode, string message)
40 : base(httpCode, message)
41 {
42 }
43  
44 public wasDAVConflictException(int httpCode, string message, int hr)
45 : base(httpCode, message, hr)
46 {
47 }
48  
49 protected wasDAVConflictException(SerializationInfo info, StreamingContext context)
50 : base(info, context)
51 {
52 }
53 }
1 office 54 }