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