Browse Source

Moved Exceptions to SMBLibrary\Exceptions

Tal Aloni 8 years ago
parent
commit
fc2e958e74

SMBLibrary/Server/Exceptions/InvalidRequestException.cs → SMBLibrary/Exceptions/InvalidRequestException.cs


SMBLibrary/Server/Exceptions/UnsupportedInformationLevelException.cs → SMBLibrary/Exceptions/UnsupportedInformationLevelException.cs


+ 2 - 2
SMBLibrary/SMBLibrary.csproj

@@ -57,6 +57,8 @@
     <Compile Include="Enums\SMBTransportType.cs" />
     <Compile Include="Enums\Win32Error.cs" />
     <Compile Include="EnumStructures\AccessMask.cs" />
+    <Compile Include="Exceptions\InvalidRequestException.cs" />
+    <Compile Include="Exceptions\UnsupportedInformationLevelException.cs" />
     <Compile Include="Helpers\FileTimeHelper.cs" />
     <Compile Include="NetBios\NameServicePackets\Enums\NameRecordType.cs" />
     <Compile Include="NetBios\NameServicePackets\Enums\NameServiceOperation.cs" />
@@ -185,8 +187,6 @@
     <Compile Include="Server\ConnectionState\SMB1Session.cs" />
     <Compile Include="Server\ConnectionState\SMB2ConnectionState.cs" />
     <Compile Include="Server\ConnectionState\SMB2Session.cs" />
-    <Compile Include="Server\Exceptions\InvalidRequestException.cs" />
-    <Compile Include="Server\Exceptions\UnsupportedInformationLevelException.cs" />
     <Compile Include="Server\Helpers\ServerPathUtils.cs" />
     <Compile Include="Server\NameServer.cs" />
     <Compile Include="Server\Shares\FileSystemShare.cs" />