-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathReadEsp32FlashException.cs
49 lines (44 loc) · 1.46 KB
/
ReadEsp32FlashException.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
//
// 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 reading from ESP32 flash.
/// </summary>
[Serializable]
public class ReadEsp32FlashException : Exception
{
/// <summary>
/// Error message from esptool.
/// </summary>
public string ExecutionError;
/// <summary>
/// ESP32 tool flash exception.
/// </summary>
/// <param name="message">Message to display.</param>
public ReadEsp32FlashException(string message) : base(message)
{
ExecutionError = message;
}
/// <summary>
/// ESP32 tool flash exception.
/// </summary>
/// <param name="message">Message to display.</param>
/// <param name="innerException">The exception to display.</param>
public ReadEsp32FlashException(string message, Exception innerException) : base(message, innerException)
{
}
/// <summary>
/// ESP32 tool flash exception.
/// </summary>
/// <param name="info">Serialized information.</param>
/// <param name="context">Streamed context.</param>
protected ReadEsp32FlashException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}