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