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