We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30928d2 commit dad43c3Copy full SHA for dad43c3
Algorithms/Search/AStar/PathfindingException.cs
@@ -5,7 +5,7 @@ namespace Algorithms.Search.AStar
5
/// <summary>
6
/// A pathfinding exception is thrown when the Pathfinder encounters a critical error and can not continue.
7
/// </summary>
8
- public class PathfindingException : ApplicationException
+ public class PathfindingException : Exception
9
{
10
public PathfindingException(string message)
11
: base(message)
Utilities/Exceptions/ItemNotFoundException.cs
@@ -5,7 +5,7 @@ namespace Utilities.Exceptions
/// Signs that sequence doesn't contain any items that one was looking for.
- public class ItemNotFoundException : ApplicationException
+ public class ItemNotFoundException : Exception
}
0 commit comments