PIBD14-BOYKO-M.S.SuperEasyS.../ProjectElectroTrans/Exceptions/CollectionInsertException.cs

13 lines
497 B
C#
Raw Permalink Normal View History

2024-04-24 23:26:19 +04:00
using System.Runtime.Serialization;
namespace ProjectElectroTrans.Exceptions;
public class CollectionInsertException : Exception
{
public CollectionInsertException() : base() { }
public CollectionInsertException(string message) : base(message) { }
public CollectionInsertException(string message, Exception exception) :
base(message, exception) { }
protected CollectionInsertException(SerializationInfo info, StreamingContext
contex) : base(info, contex) { }
}