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