using System.Runtime.Serialization; using ProjectElectroTrans.CollectionGenericObjects; namespace ProjectElectroTrans.Exceptions; public class CollectionTypeException : Exception { public CollectionTypeException() : base() { } public CollectionTypeException(string message) : base(message) { } public CollectionTypeException(string message, Exception exception) : base(message, exception) { } protected CollectionTypeException(SerializationInfo info, StreamingContext contex) : base(info, contex) { } }