wabbajack/Wabbajack.Paths/PathException.cs

10 lines
144 B
C#
Raw Permalink Normal View History

2021-09-27 12:42:46 +00:00
using System;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Paths;
public class PathException : Exception
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
public PathException(string ex) : base(ex)
2021-09-27 12:42:46 +00:00
{
}
}