26 lines
526 B
Plaintext
26 lines
526 B
Plaintext
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
|
||
|
using System;
|
||
|
|
||
|
namespace Smb.Client
|
||
|
{
|
||
|
class SmbProtocolViolationException : Exception
|
||
|
{
|
||
|
SmbProtocolViolationException()
|
||
|
: base("An SMB protocol violation has occurred.")
|
||
|
{}
|
||
|
|
||
|
SmbProtocolViolationException(string! msg)
|
||
|
: base(msg)
|
||
|
{}
|
||
|
|
||
|
SmbProtocolViolationException(string! msg, Exception! inner)
|
||
|
: base(msg, inner)
|
||
|
{}
|
||
|
|
||
|
}
|
||
|
}
|