Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
791 B

  1. //
  2. //
  3. // MODULE: GenException.h
  4. //
  5. // PURPOSE: Communicates Operating System error messages and a custom
  6. // message accross function boundries.
  7. //
  8. // PROJECT: Generic Troubleshooter DLL for Microsoft AnswerPoint
  9. //
  10. // COMPANY: Saltmine Creative, Inc. (206)-633-4743 [email protected]
  11. //
  12. // AUTHOR: Richard Meadows
  13. //
  14. // ORIGINAL DATE: 8/7/96
  15. //
  16. //
  17. // Version Date By Comments
  18. //--------------------------------------------------------------------
  19. // V0.1 - RM Original
  20. // V0.3 3/24/98 JM Local Version for NT5
  21. //
  22. #ifndef __CGENEXCEPTION_H_
  23. #define __CGENEXCEPTION_H_ 1
  24. class CGenException
  25. {
  26. public:
  27. CGenException() {m_OsError=0;m_strOsMsg=_T("");m_strError=_T("");};
  28. long m_OsError;
  29. CString m_strOsMsg;
  30. CString m_strError;
  31. };
  32. #endif