summaryrefslogtreecommitdiff
path: root/setup_native/source/win32/customactions/reg4msdoc/registryexception.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'setup_native/source/win32/customactions/reg4msdoc/registryexception.hxx')
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registryexception.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/setup_native/source/win32/customactions/reg4msdoc/registryexception.hxx b/setup_native/source/win32/customactions/reg4msdoc/registryexception.hxx
index 4ea3a2098853..96ce6036746a 100644
--- a/setup_native/source/win32/customactions/reg4msdoc/registryexception.hxx
+++ b/setup_native/source/win32/customactions/reg4msdoc/registryexception.hxx
@@ -17,23 +17,23 @@ class RegistryException : public std::exception
public:
RegistryException(long ErrorCode);
-
+
virtual ~RegistryException() throw();
-
+
/**
- @descr Returns a string that describes the error if
+ @descr Returns a string that describes the error if
available, else NULL will be returned. The
returned string is only temporary so the caller
has to copy it if he needs the string further.
*/
virtual const char* what() const throw();
-
+
/**
- @descr Returns the error code.
+ @descr Returns the error code.
*/
-
+
long GetErrorCode() const;
-
+
private:
long m_ErrorCode;
void* m_ErrorMsg;
@@ -51,7 +51,7 @@ public:
};
//#######################################
-// Thrown when trying to write to a readonly registry key
+// Thrown when trying to write to a readonly registry key
//#######################################
class RegistryNoWriteAccessException : public RegistryException
@@ -61,7 +61,7 @@ public:
};
//#######################################
-// Thrown when trying to access an registry key, with improper
+// Thrown when trying to access an registry key, with improper
// access rights
//#######################################
@@ -102,6 +102,6 @@ public:
RegistryInvalidOperationException(long ErrorCode);
};
-#endif
+#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */