VCSException.cs 257 B

12345678910
  1. 
  2. namespace GitMerge
  3. {
  4. public class VCSException : System.Exception
  5. {
  6. public VCSException(string message = "Could not find the VCS executable. Please enter the path to your VCS in the settings.") : base(message)
  7. {
  8. }
  9. }
  10. }