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

25 lines
No EOL
626 B
C#

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