File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace Algorithms.Search.AStar
5
5
/// <summary>
6
6
/// A pathfinding exception is thrown when the Pathfinder encounters a critical error and can not continue.
7
7
/// </summary>
8
- public class PathfindingException : ApplicationException
8
+ public class PathfindingException : Exception
9
9
{
10
10
public PathfindingException ( string message )
11
11
: base ( message )
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace Utilities.Exceptions
5
5
/// <summary>
6
6
/// Signs that sequence doesn't contain any items that one was looking for.
7
7
/// </summary>
8
- public class ItemNotFoundException : ApplicationException
8
+ public class ItemNotFoundException : Exception
9
9
{
10
10
}
11
11
}
You can’t perform that action at this time.
0 commit comments