mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-24 12:06:38 +00:00
25 lines
596 B
C#
25 lines
596 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace MTSC.Exceptions
|
|
{
|
|
public class IncompleteHeaderKeyException : Exception
|
|
{
|
|
public IncompleteHeaderKeyException()
|
|
{
|
|
}
|
|
|
|
public IncompleteHeaderKeyException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public IncompleteHeaderKeyException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected IncompleteHeaderKeyException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|