This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
angels-and-demons/Angels and Demons/Assets/Editor/VCSException.cs
2018-05-09 20:42:22 -05:00

10 lines
No EOL
257 B
C#

namespace GitMerge
{
public class VCSException : System.Exception
{
public VCSException(string message = "Could not find the VCS executable. Please enter the path to your VCS in the settings.") : base(message)
{
}
}
}