13 lines
330 B
C#
13 lines
330 B
C#
// C:\Users\adm\Source\Repos\presence1\Demo\Data\Exceptions\UserNotFoundException.cs
|
|
using System;
|
|
|
|
namespace Demo.Data.Exceptions
|
|
{
|
|
public class UserNotFoundException : Exception
|
|
{
|
|
public UserNotFoundException(Guid userId)
|
|
: base($"User with ID {userId} was not found.")
|
|
{
|
|
}
|
|
}
|
|
} |