2010-12-04 16:14:34 +00:00
|
|
|
|
/********************************************************
|
|
|
|
|
* StorageDeviceNotConnectedException.h *
|
|
|
|
|
* *
|
|
|
|
|
* XFX StorageDeviceNotConnectedException definition *
|
|
|
|
|
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
|
|
|
|
|
********************************************************/
|
|
|
|
|
#ifndef _XFX_STORAGE_STORAGEDEVICENOTCONNECTEDEXCEPTION_
|
|
|
|
|
#define _XFX_STORAGE_STORAGEDEVICENOTCONNECTEDEXCEPTION_
|
|
|
|
|
|
2010-12-27 01:01:25 +00:00
|
|
|
|
#include <System/Runtime/InteropServices/ExternalException.h>
|
|
|
|
|
|
|
|
|
|
using namespace System::Runtime::InteropServices;
|
2010-12-04 16:14:34 +00:00
|
|
|
|
|
|
|
|
|
namespace XFX
|
|
|
|
|
{
|
|
|
|
|
namespace Storage
|
|
|
|
|
{
|
2012-09-28 20:36:02 +00:00
|
|
|
|
// The exception that is thrown when the requested StorageDevice is not connected
|
2010-12-27 01:01:25 +00:00
|
|
|
|
class StorageDeviceNotConnectedException : public ExternalException
|
2010-12-04 16:14:34 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
StorageDeviceNotConnectedException();
|
|
|
|
|
StorageDeviceNotConnectedException(char* message);
|
2011-01-16 00:47:37 +00:00
|
|
|
|
StorageDeviceNotConnectedException(char* message, Exception* innerException);
|
2010-12-04 16:14:34 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif //_XFX_STORAGE_STORAGEDEVICENOTCONNECTEDEXCEPTION_
|