Cosmos/source2/Debug/Microsoft.VisualStudio.Debugger.SampleEngineWorker/ComponentException.h
mterwoord_cp 7d75c57bb4
2010-01-06 12:16:20 +00:00

22 lines
297 B
C

#pragma once
BEGIN_NAMESPACE
public ref class ComponentException : public Exception
{
public:
ComponentException(HRESULT hr) : Exception()
{
this->HResult = hr;
}
property HRESULT HResult
{
HRESULT get()
{
return Exception::HResult;
}
}
};
END_NAMESPACE