wabbajack/Wabbajack.Paths/PathException.cs
2021-10-23 10:51:17 -06:00

10 lines
144 B
C#

using System;
namespace Wabbajack.Paths;
public class PathException : Exception
{
public PathException(string ex) : base(ex)
{
}
}