birbmap/Birdmap.BLL/Exceptions/EntityNotFoundException.cs

26 lines
597 B
C#

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