C# Class ReSharper.Exceptional.Analyzers.HasInnerExceptionFromOuterCatchClauseAnalyzer

Analyzes throw statements and checks if the contain inner exception when thrown from inside a catch clause.
Inheritance: AnalyzerBase
显示文件 Open project: CSharpAnalyzers/ExceptionalReSharper

Public Methods

Method Description
Visit ( ThrowStatementModel throwStatement ) : void

Performs analyze of throw throwStatement.

Private Methods

Method Description
RequiresInnerExceptionPassing ( ThrowStatementModel throwStatementModel ) : bool

Method Details

Visit() public method

Performs analyze of throw throwStatement.
public Visit ( ThrowStatementModel throwStatement ) : void
throwStatement ThrowStatementModel Throw statement model to analyze.
return void