Services: Added UnsupportedOpNumException

This commit is contained in:
Tal Aloni 2018-05-17 13:44:37 +03:00
parent 403669056d
commit ca8bed1037
2 changed files with 19 additions and 0 deletions

View file

@ -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" />

View file

@ -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()
{
}
}
}