wasStitchNET – Blame information for rev 13

Subversion Repositories:
Rev:
Rev Author Line No. Line
12 office 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2017 - 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  
7 using System;
8 using System.Collections.Generic;
9 using System.Linq;
10 using System.Runtime.Serialization;
11 using System.Text;
12 using System.Threading.Tasks;
13 using System.Web;
14 using wasDAVClient.Helpers;
15  
16 namespace wasStitchNET
17 {
18 public class StitchException : HttpException
19 {
20  
21 public StitchException(wasDAVException ex)
22 : base(ex.GetHttpCode(), ex.Message, ex.InnerException)
23 {
24  
25 }
26  
27 public StitchException()
28 {
29 }
13 office 30  
31 public StitchException(string message) : base(message)
32 {
33 }
34  
35 public StitchException(string message, Exception innerException) : base(message, innerException)
36 {
37 }
12 office 38 }
39 }