9 lines
196 B
C#
9 lines
196 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Demo.Data.Exceptions
|
|||
|
{
|
|||
|
public class PresenceNotFoundException : Exception
|
|||
|
{
|
|||
|
public PresenceNotFoundException(string message) : base(message) { }
|
|||
|
}
|
|||
|
}
|