wasDAVClient – Blame information for rev 5

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 ///////////////////////////////////////////////////////////////////////////
6 // Originally based on: WebDAV .NET client by Sergey Kazantsev
7  
1 office 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  
3 office 19 public wasDAVConflictException(string message)
1 office 20 : base(message)
3 office 21 {
22 }
1 office 23  
3 office 24 public wasDAVConflictException(string message, int hr)
1 office 25 : base(message, hr)
3 office 26 {
27 }
1 office 28  
3 office 29 public wasDAVConflictException(string message, Exception innerException)
1 office 30 : base(message, innerException)
3 office 31 {
32 }
1 office 33  
3 office 34 public wasDAVConflictException(int httpCode, string message, Exception innerException)
1 office 35 : base(httpCode, message, innerException)
3 office 36 {
37 }
1 office 38  
3 office 39 public wasDAVConflictException(int httpCode, string message)
1 office 40 : base(httpCode, message)
3 office 41 {
42 }
1 office 43  
3 office 44 public wasDAVConflictException(int httpCode, string message, int hr)
1 office 45 : base(httpCode, message, hr)
3 office 46 {
47 }
1 office 48  
3 office 49 protected wasDAVConflictException(SerializationInfo info, StreamingContext context)
1 office 50 : base(info, context)
3 office 51 {
52 }
1 office 53 }
54 }