25 lines
No EOL
626 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |