/// <summary>
 /// Creates a new instance with the specified properties.
 /// </summary>
 /// <param name="exitCode">The exit code associated with the error.</param>
 /// <param name="message">An error message associated wih the error. </param>
 /// <param name="innerException">An optional inner exception associated with the error.</param>
 public EngineException(EngineExitCode exitCode, string message, Exception innerException = null)
     : base(message, innerException)
 {
     ExitCode = exitCode;
 }
Esempio n. 2
0
 /// <summary>
 /// Creates a new instance with the specified properties.
 /// </summary>
 /// <param name="exitCode">The exit code associated with the error.</param>
 /// <param name="message">An error message associated wih the error. </param>
 /// <param name="innerException">An optional inner exception associated with the error.</param>
 public EngineException(EngineExitCode exitCode, string message, Exception innerException = null)
     : base(message, innerException)
 {
     ExitCode = exitCode;
 }