Dreamine.Communication.Serial 1.0.2
Dreamine.Communication.Serial 통신 기능과 관련 API를 제공합니다.
로딩중...
검색중...
일치하는것 없음
SerialCommunicationException.cs
이 파일의 문서화 페이지로 가기
1using System;
2using Dreamine.Communication.Abstractions.Exceptions;
3
5
14public sealed class SerialCommunicationException : CommunicationException
15{
25 {
26 }
27
44 public SerialCommunicationException(string message)
45 : base(message)
46 {
47 }
48
73 public SerialCommunicationException(string message, Exception innerException)
74 : base(message, innerException)
75 {
76 }
77}