websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Exceptions/ConnectToWebDavServerException.cs
2014-12-03 11:43:26 +03:00

25 lines
No EOL
651 B
C#

using System;
using System.Runtime.Serialization;
namespace WebsitePanel.WebDavPortal.Exceptions
{
[Serializable]
public class ConnectToWebDavServerException : Exception
{
public ConnectToWebDavServerException()
{
}
public ConnectToWebDavServerException(string message) : base(message)
{
}
public ConnectToWebDavServerException(string message, Exception inner) : base(message, inner)
{
}
protected ConnectToWebDavServerException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}