1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace SCSI
- {
- public class UnsupportedSCSICommandException : NotImplementedException
- {
- public UnsupportedSCSICommandException(string message) : base(message)
- {
- }
- }
- }
|