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