1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace VeloeMinecraftLauncher.Utils
- {
- internal class JavaProcessException : Exception
- {
- public JavaProcessException(string message, string logpath) : base(message)
- {
- LogPath = logpath;
- }
- public string LogPath { get; set; }
- }
- }
|