mirror of
https://github.com/gusmanb/logicanalyzer.git
synced 2025-02-05 10:08:06 +00:00
6dd3e93cff
Reworked driver
15 lines
424 B
C#
15 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedDriver
|
|
{
|
|
public class DeviceConnectionException : Exception
|
|
{
|
|
public DeviceConnectionException(string message) : base(message) { }
|
|
public DeviceConnectionException(string message, Exception innerException) : base(message, innerException) { }
|
|
}
|
|
}
|