wasStitchNET – Rev 13

Subversion Repositories:
Rev:
///////////////////////////////////////////////////////////////////////////
//  Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3      //
//  Please see: http://www.gnu.org/licenses/gpl.html for legal details,  //
//  rights of fair usage, the disclaimer and warranty conditions.        //
///////////////////////////////////////////////////////////////////////////

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using wasDAVClient.Helpers;

namespace wasStitchNET
{
    public class StitchException : HttpException
    {

        public StitchException(wasDAVException ex)
            : base(ex.GetHttpCode(), ex.Message, ex.InnerException)
        {
            
        }

        public StitchException()
        {
        }

        public StitchException(string message) : base(message)
        {
        }

        public StitchException(string message, Exception innerException) : base(message, innerException)
        {
        }
    }
}