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