Skip to content

“Generate exception constructors“ after RCS1194 generates a wrong code at the exception with no body #1731

@HSyr

Description

@HSyr

RCS1194 Implement exception constructors

Before:

class MyException ( string message ) : Exception( message );

After:

class MyException ( string message ) : Exception( message ) public MyException () : base()
{
}

public MyException ( string message, Exception innerException ) : base( message, innerException )
{
};

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions