Source code of Windows XP (NT5)
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.

36 lines
830 B

  1. //
  2. // MODULE: BASICEXCEPTION.CPP
  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 04/09/98 JM/OK+ Local Version for NT5
  23. //
  24. #include "stdafx.h"
  25. #include "ErrorEnums.h"
  26. #include "BasicException.h"
  27. CBasicException::CBasicException()
  28. {
  29. m_dwBErr = LTSC_OK;
  30. return;
  31. }
  32. CBasicException::~CBasicException()
  33. {
  34. return;
  35. }