20 lines
665 B
C#
20 lines
665 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ProjectElectricLocomotive.Exceptions
|
|||
|
{
|
|||
|
public class CollectionNoInfoException : Exception
|
|||
|
{
|
|||
|
public CollectionNoInfoException() : base() { }
|
|||
|
public CollectionNoInfoException(string message) : base(message) { }
|
|||
|
public CollectionNoInfoException(string message, Exception exception) :
|
|||
|
base(message, exception)
|
|||
|
{ }
|
|||
|
protected CollectionNoInfoException(SerializationInfo info, StreamingContext
|
|||
|
contex) : base(info, contex) { }
|
|||
|
}
|
|||
|
}
|