Ejemplo n.º 1
0
 public CommandLineException(CommandLineErrorCode errorCode, Exception innerException) : base(errorCode.GetDefaultMessage(), innerException)
 {
     Code = errorCode;
 }
Ejemplo n.º 2
0
 public CommandLineException(CommandLineErrorCode errorCode) : base(errorCode.GetDefaultMessage())
 {
     Code = errorCode;
 }