internal UncatchableExceptionWarning([NotNull] string message, [NotNull] ISpecificCatchClause catchClause) : base(message)
     => this.catchClause = catchClause;
Esempio n. 2
0
 internal CatchClauseWithoutVariableSuggestion([NotNull] string message, [NotNull] ISpecificCatchClause catchClause) : base(message)
     => CatchClause = catchClause;
 internal CatchClauseWithoutVariableHighlighting([NotNull] string message, [NotNull] ISpecificCatchClause catchClause) : base(message)
     => CatchClause = catchClause;
 internal UncatchableExceptionHighlighting([NotNull] string message, [NotNull] ISpecificCatchClause catchClause)
     : base(message)
 {
     this.catchClause = catchClause;
 }