Add project files

This commit is contained in:
Petrutiu Mihai
2016-07-14 12:00:45 +03:00
parent 76b83a04a4
commit 36c3127081
41 changed files with 1265 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
using System;
namespace ChainOfResponssibility.Validators.UserEntities
{
internal class NotFoundException : Exception
{
private int iD;
public NotFoundException()
{
}
public NotFoundException(string message) : base(message)
{
}
public NotFoundException(int iD)
{
this.iD = iD;
}
public NotFoundException(string message, Exception innerException) : base(message, innerException)
{
}
}
}