19 lines
593 B
C#
19 lines
593 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectBus.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) { }
|
|
|
|
}
|