-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVisualStudioException.cs
More file actions
43 lines (35 loc) · 1.41 KB
/
VisualStudioException.cs
File metadata and controls
43 lines (35 loc) · 1.41 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
42
43
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
using System;
namespace CodeFactory.VisualStudio
{
/// <summary>
/// Base exception class for all visual studio specific exceptions that occur in code factory.
/// </summary>
public class VisualStudioException:CodeFactoryException
{
/// <summary>
/// Creates a visual studio code factory exception.
/// </summary>
public VisualStudioException() : base(VisualStudioMessages.VisualStudioGeneralError)
{
}
/// <summary>
/// Creates a visual studio code factory exception.
/// </summary>
/// <param name="message">The error message to be captured by the exception</param>
public VisualStudioException(string message) : base(message)
{
}
/// <summary>
/// Creates a visual studio 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 VisualStudioException(string message, Exception innerException) : base(message, innerException)
{
}
}
}