wabbajack/Wabbajack.Paths/PathException.cs
2021-09-27 06:42:46 -06:00

11 lines
170 B
C#

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