JavaProcessException.cs 406 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace VeloeMinecraftLauncher.Utils
  7. {
  8. internal class JavaProcessException : Exception
  9. {
  10. public JavaProcessException(string message, string logpath) : base(message)
  11. {
  12. LogPath = logpath;
  13. }
  14. public string LogPath { get; set; }
  15. }
  16. }