mirror of
https://github.com/Stone-Red-Code/Maze.git
synced 2026-09-04 09:06:14 +02:00
Initial commit
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user