merged from work

This commit is contained in:
2019-12-20 20:02:14 +01:00
parent 202608651b
commit 11e3a02511
505 changed files with 65307 additions and 823 deletions

View File

@ -0,0 +1,24 @@
using System;
using System.Runtime.Serialization;
namespace KattekerCreator.Exceptions
{
internal class KattekerCreatorException : Exception
{
public KattekerCreatorException()
{
}
public KattekerCreatorException(string message) : base(message)
{
}
public KattekerCreatorException(string message, Exception innerException) : base(message, innerException)
{
}
protected KattekerCreatorException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}