merged from work
This commit is contained in:
24
KattekerCreator/Exceptions/KattekerCreatorException.cs
Normal file
24
KattekerCreator/Exceptions/KattekerCreatorException.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user