Files
behavioral-patterns/src/ChainOfResponssibility/Validators/UserEntities/Exceptions/NotFoundException.cs
Petrutiu Mihai 36c3127081 Add project files
2016-07-14 12:00:45 +03:00

26 lines
521 B
C#

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)
{
}
}
}