wasStitchNET – Diff between revs 12 and 13

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 12 Rev 13
1 /////////////////////////////////////////////////////////////////////////// 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 // 2 // Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 //
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, // 3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. // 4 // rights of fair usage, the disclaimer and warranty conditions. //
5 /////////////////////////////////////////////////////////////////////////// 5 ///////////////////////////////////////////////////////////////////////////
6   6  
7 using System; 7 using System;
8 using System.Collections.Generic; 8 using System.Collections.Generic;
9 using System.Linq; 9 using System.Linq;
10 using System.Runtime.Serialization; 10 using System.Runtime.Serialization;
11 using System.Text; 11 using System.Text;
12 using System.Threading.Tasks; 12 using System.Threading.Tasks;
13 using System.Web; 13 using System.Web;
14 using wasDAVClient.Helpers; 14 using wasDAVClient.Helpers;
15   15  
16 namespace wasStitchNET 16 namespace wasStitchNET
17 { 17 {
18 public class StitchException : HttpException 18 public class StitchException : HttpException
19 { 19 {
20   20  
21 public StitchException(wasDAVException ex) 21 public StitchException(wasDAVException ex)
22 : base(ex.GetHttpCode(), ex.Message, ex.InnerException) 22 : base(ex.GetHttpCode(), ex.Message, ex.InnerException)
23 { 23 {
24 24
25 } 25 }
26   26  
27 public StitchException() 27 public StitchException()
28 { 28 {
29 } 29 }
-   30  
-   31 public StitchException(string message) : base(message)
-   32 {
-   33 }
-   34  
-   35 public StitchException(string message, Exception innerException) : base(message, innerException)
-   36 {
-   37 }
30 } 38 }
31 } 39 }
32   40