initial commit

This commit is contained in:
TLRZ Christian
2017-04-07 12:36:42 +02:00
parent d88743a4de
commit 6a273efd08
10 changed files with 629 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
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)
{
}
}
}