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
832 B

  1. //
  2. // MODULE: BASICEXCEPTION.H
  3. //
  4. // PURPOSE: Exception that will be caught in ApgtsX2Ctrl::RunQuery.
  5. // This exception is thrown from most of the Trouble
  6. // shooter functions.
  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: 6/4/96
  15. //
  16. // NOTES:
  17. // 1. Based on Print Troubleshooter DLL.
  18. //
  19. // Version Date By Comments
  20. //--------------------------------------------------------------------
  21. // V0.1 - RM Original
  22. // V0.3 3/24/98 JM Local Version for NT5
  23. #ifndef __BASICEXCEPTION_H_
  24. #define __BASICEXCEPTION_H_ 1
  25. class CBasicException
  26. {
  27. public:
  28. CBasicException();
  29. ~CBasicException();
  30. DLSTATTYPES m_dwBErr;
  31. };
  32. #endif