mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-23 09:45:54 +02:00
Services: Added UnsupportedOpNumException
This commit is contained in:
parent
403669056d
commit
ca8bed1037
2 changed files with 19 additions and 0 deletions
|
@ -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
SMBLibrary/Services/Exceptions/UnsupportedOpNumException.cs
Normal file
18
SMBLibrary/Services/Exceptions/UnsupportedOpNumException.cs
Normal 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()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue