Renamed solution and project file

This commit is contained in:
2022-09-26 20:52:14 +02:00
parent 9876121e06
commit ffbeb9dcb4
19 changed files with 4 additions and 4 deletions
@@ -0,0 +1,22 @@
using System;
namespace PInvokeSerialPort
{
/// <summary>
/// Exception used for all errors.
/// </summary>
public class CommPortException : ApplicationException
{
/// <summary>
/// Constructor for raising direct exceptions
/// </summary>
/// <param name="desc">Description of error</param>
public CommPortException(string desc) : base(desc) { }
/// <summary>
/// Constructor for re-raising exceptions from receive thread
/// </summary>
/// <param name="e">Inner exception raised on receive thread</param>
public CommPortException(Exception e) : base("Receive Thread Exception", e) { }
}
}