فهرست منبع

Services: Added UnsupportedOpNumException

Tal Aloni 6 سال پیش
والد
کامیت
ca8bed1037
2فایلهای تغییر یافته به همراه19 افزوده شده و 0 حذف شده
  1. 1 0
      SMBLibrary/SMBLibrary.csproj
  2. 18 0
      SMBLibrary/Services/Exceptions/UnsupportedOpNumException.cs

+ 1 - 0
SMBLibrary/SMBLibrary.csproj

@@ -271,6 +271,7 @@
     <Compile Include="Server\SMBServer.SMB1.cs" />
     <Compile Include="Server\SMBServer.SMB2.cs" />
     <Compile Include="Services\Enums\PlatformName.cs" />
+    <Compile Include="Services\Exceptions\UnsupportedOpNumException.cs" />
     <Compile Include="Services\RemoteService.cs" />
     <Compile Include="Services\RemoteServiceHelper.cs" />
     <Compile Include="Services\RPCPipeStream.cs" />

+ 18 - 0
SMBLibrary/Services/Exceptions/UnsupportedOpNumException.cs

@@ -0,0 +1,18 @@
+/* Copyright (C) 2018 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+ * 
+ * You can redistribute this program and/or modify it under the terms of
+ * the GNU Lesser Public License as published by the Free Software Foundation,
+ * either version 3 of the License, or (at your option) any later version.
+ */
+using System;
+using System.Collections.Generic;
+
+namespace SMBLibrary
+{
+    public class UnsupportedOpNumException : Exception
+    {
+        public UnsupportedOpNumException() : base()
+        {
+        }
+    }
+}