10using System.Collections.Generic;
19 internal static class ExceptionExtensions
28 internal static Diagnostic ToUsageDiagnostic(
this Exception ex)
30 Diagnostic diagnostic;
31 DiagnosticDescriptor descriptor;
33 descriptor =
new DiagnosticDescriptor(
"Csla0001",
34 ex.Message, GenerateSingleLineExceptionMessage(ex),
"Usage", DiagnosticSeverity.Error,
true,
35 customTags:
new string[] { WellKnownDiagnosticTags.Compiler, WellKnownDiagnosticTags.NotConfigurable });
37 diagnostic = Diagnostic.Create(descriptor,
null);
42 #region Private Helper Methods
49 private static string GenerateSingleLineExceptionMessage(Exception ex)
51 return ex.ToString().Replace(Environment.NewLine,
"; ");