DocSpace-buildtools/common/ASC.Common/Web/ItemNotFoundException.cs

12 lines
349 B
C#
Raw Normal View History

namespace ASC.Common.Web;
[Serializable]
public class ItemNotFoundException : HttpException
2019-06-13 15:01:29 +00:00
{
public ItemNotFoundException() : base(404, "Not found") { }
2019-06-13 15:01:29 +00:00
public ItemNotFoundException(string message) : base(404, message) { }
2019-06-13 15:01:29 +00:00
public ItemNotFoundException(string message, Exception inner) : base(404, message, inner) { }
}