-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProjectSystemException.cs
More file actions
41 lines (38 loc) · 1.54 KB
/
ProjectSystemException.cs
File metadata and controls
41 lines (38 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
using System;
namespace CodeFactory.VisualStudio
{
/// <summary>
/// Code factory exception that occurs when accessing visual studios project system.
/// </summary>
public class ProjectSystemException:VisualStudioException
{
/// <summary>
/// Creates a visual studio project system code factory exception.
/// </summary>
public ProjectSystemException() : base(VisualStudioMessages.VisualStudioGeneralError)
{
//Intentionally blank
}
/// <summary>
/// Creates a visual studio project system code factory exception.
/// </summary>
/// <param name="message">The error message to be captured by the exception</param>
public ProjectSystemException(string message) : base(message)
{
//Intentionally blank
}
/// <summary>
/// Creates a visual studio project system code factory exception.
/// </summary>
/// <param name="message">The error message to be captured by the exception</param>
/// <param name="innerException">The inner exception that occurred and to be added to this exception.</param>
public ProjectSystemException(string message, Exception innerException) : base(message, innerException)
{
//Intentionally blank
}
}
}