extensions/Exceptions/NotFoundException.cs
2017-04-07 12:36:42 +02:00

25 lines
555 B
C#

using System;
using System.Runtime.Serialization;
namespace Chrosey.Extensions
{
[Serializable]
class NotFoundException : Exception
{
public NotFoundException()
{
}
public NotFoundException(string message) : base(message)
{
}
public NotFoundException(string message, Exception innerException) : base(message, innerException)
{
}
protected NotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}