2013-05-05 18:18:41 +02:00
|
|
|
/********************************************************
|
|
|
|
* StorageDeviceNotConnectedException.h *
|
|
|
|
* *
|
|
|
|
* XFX StorageDeviceNotConnectedException definition *
|
2013-06-02 14:32:43 +02:00
|
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
2013-05-05 18:18:41 +02:00
|
|
|
********************************************************/
|
|
|
|
#ifndef _XFX_STORAGE_STORAGEDEVICENOTCONNECTEDEXCEPTION_
|
|
|
|
#define _XFX_STORAGE_STORAGEDEVICENOTCONNECTEDEXCEPTION_
|
|
|
|
|
|
|
|
#include <System/Runtime/InteropServices/ExternalException.h>
|
|
|
|
|
2013-10-03 14:40:24 +02:00
|
|
|
using namespace System;
|
2013-05-05 18:18:41 +02:00
|
|
|
using namespace System::Runtime::InteropServices;
|
|
|
|
|
|
|
|
namespace XFX
|
|
|
|
{
|
|
|
|
namespace Storage
|
|
|
|
{
|
2013-08-13 20:04:25 +02:00
|
|
|
/**
|
|
|
|
* The exception that is thrown when the requested StorageDevice is not connected
|
|
|
|
*/
|
2013-05-05 18:18:41 +02:00
|
|
|
class StorageDeviceNotConnectedException : public ExternalException
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
StorageDeviceNotConnectedException();
|
2013-08-13 20:04:25 +02:00
|
|
|
StorageDeviceNotConnectedException(const String& message);
|
|
|
|
StorageDeviceNotConnectedException(const String& message, Exception * const innerException);
|
2013-05-05 18:18:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //_XFX_STORAGE_STORAGEDEVICENOTCONNECTEDEXCEPTION_
|