13 lines
487 B
C#
13 lines
487 B
C#
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace ProjectElectroTrans.Exceptions;
|
|||
|
|
|||
|
public class CollectionInfoException : Exception
|
|||
|
{
|
|||
|
public CollectionInfoException() : base() { }
|
|||
|
public CollectionInfoException(string message) : base(message) { }
|
|||
|
public CollectionInfoException(string message, Exception exception) :
|
|||
|
base(message, exception) { }
|
|||
|
protected CollectionInfoException(SerializationInfo info, StreamingContext
|
|||
|
contex) : base(info, contex) { }
|
|||
|
}
|