CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
ExceptionExtensions.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ExceptionExtensions.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Extension methods for the Exception type</summary>
7//-----------------------------------------------------------------------
8using Microsoft.CodeAnalysis;
9using System;
10using System.Collections.Generic;
11using System.Text;
12
14{
15
19 internal static class ExceptionExtensions
20 {
21
28 internal static Diagnostic ToUsageDiagnostic(this Exception ex)
29 {
30 Diagnostic diagnostic;
31 DiagnosticDescriptor descriptor;
32
33 descriptor = new DiagnosticDescriptor("Csla0001",
34 ex.Message, GenerateSingleLineExceptionMessage(ex), "Usage", DiagnosticSeverity.Error, true,
35 customTags: new string[] { WellKnownDiagnosticTags.Compiler, WellKnownDiagnosticTags.NotConfigurable });
36
37 diagnostic = Diagnostic.Create(descriptor, null);
38
39 return diagnostic;
40 }
41
42 #region Private Helper Methods
43
49 private static string GenerateSingleLineExceptionMessage(Exception ex)
50 {
51 return ex.ToString().Replace(Environment.NewLine, "; ");
52 }
53
54 #endregion
55
56 }
57}