1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace SMBLibrary
- {
- public class UnsupportedInformationLevelException : Exception
- {
- public UnsupportedInformationLevelException() : base()
- {
- }
- public UnsupportedInformationLevelException(string message) : base(message)
- {
- }
- }
- }
|