-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathSilinkExecutionException.cs
56 lines (50 loc) · 1.57 KB
/
SilinkExecutionException.cs
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
44
45
46
47
48
49
50
51
52
53
54
55
56
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using System;
using System.Runtime.Serialization;
namespace nanoFramework.Tools.FirmwareFlasher
{
/// <summary>
/// Error executing SI Link command.
/// </summary>
[Serializable]
public class SilinkExecutionException : Exception
{
/// <summary>
/// Error message from SI Link.
/// </summary>
public string ExecutionError;
/// <summary>
/// SI Link Exception.
/// </summary>
public SilinkExecutionException()
{
}
/// <summary>
/// SI Link Exception.
/// </summary>
/// <param name="message">Message to display.</param>
public SilinkExecutionException(string message) : base(message)
{
ExecutionError = message;
}
/// <summary>
/// SI Link Exception.
/// </summary>
/// <param name="message">Message to display.</param>
/// <param name="innerException">The exception to display.</param>
public SilinkExecutionException(string message, Exception innerException) : base(message, innerException)
{
}
/// <summary>
/// SI Link Exception.
/// </summary>
/// <param name="info">Serialized information.</param>
/// <param name="context">Streamed context.</param>
protected SilinkExecutionException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}