mirror of
https://github.com/Stone-Red-Code/Maze.git
synced 2026-09-04 09:06:14 +02:00
23 lines
448 B
C#
23 lines
448 B
C#
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)
|
|
{
|
|
}
|
|
} |