13 lines
626 B
C#
13 lines
626 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace ProjectElectroTrans.Exceptions;
|
|
|
|
public class CollectionAlreadyExistsException : Exception
|
|
{
|
|
public CollectionAlreadyExistsException() : base() { }
|
|
public CollectionAlreadyExistsException(string name) : base($"Коллекция {name} уже существует!") { }
|
|
public CollectionAlreadyExistsException(string name, Exception exception) :
|
|
base($"Коллекция {name} уже существует!", exception) { }
|
|
protected CollectionAlreadyExistsException(SerializationInfo info, StreamingContext
|
|
contex) : base(info, contex) { }
|
|
} |