```C# throw new Exception( "Sample Error Message.", new Exception() ); ``` raises a warning about character repetition whereas ```C# throw new Exception("Sample Error Message.", new Exception()); ``` does not.
raises a warning about character repetition whereas
does not.