25 lines
No EOL
650 B
C#
25 lines
No EOL
650 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace WebsitePanel.WebDav.Core.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)
|
|
{
|
|
}
|
|
}
|
|
} |