6 lines
169 B
C#
6 lines
169 B
C#
public class NotFoundException : DomainException
|
|
{
|
|
public NotFoundException(string message, string errorCode = "NOT_FOUND")
|
|
: base(message, errorCode) { }
|
|
}
|