Initial commit

This commit is contained in:
Stone_Red
2023-05-05 19:47:25 +02:00
commit eb79a8d616
18 changed files with 975 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System.Runtime.Serialization;
namespace Maze;
[Serializable]
public class MazeException : Exception
{
public MazeException()
{
}
public MazeException(string message) : base(message)
{
}
public MazeException(string message, Exception innerException) : base(message, innerException)
{
}
protected MazeException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}