Skip to content

Commit 131677c

Browse files
committed
Simplify names
1 parent c771a13 commit 131677c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

StyleCop.Analyzers.Status.Generator/CompilationFailedException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// An exception that gets thrown if the compilation failed.
77
/// </summary>
88
[Serializable]
9-
public class CompilationFailedException : System.Exception
9+
public class CompilationFailedException : Exception
1010
{
1111
/// <summary>
1212
/// Initializes a new instance of the <see cref="CompilationFailedException"/> class.
@@ -30,7 +30,7 @@ public CompilationFailedException(string message) : base(message)
3030
/// </summary>
3131
/// <param name="message">The message that should be reported</param>
3232
/// <param name="inner">The exception that caused this exception to be thrown</param>
33-
public CompilationFailedException(string message, System.Exception inner) : base(message, inner)
33+
public CompilationFailedException(string message, Exception inner) : base(message, inner)
3434
{
3535

3636
}

0 commit comments

Comments
 (0)