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.

34 lines
801 B

  1. //
  2. // MODULE: HTTPQUERYEXCEPTION.CPP
  3. //
  4. // PURPOSE: Execption that is thrown from the CHttpQuery class.
  5. //
  6. // PROJECT: Generic Troubleshooter DLL for Microsoft AnswerPoint
  7. //
  8. // COMPANY: Saltmine Creative, Inc. (206)-633-4743 [email protected]
  9. //
  10. // AUTHOR: Richard Meadows
  11. //
  12. // ORIGINAL DATE: 6/4/96
  13. //
  14. // NOTES:
  15. // 1. Based on Print Troubleshooter DLL
  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 __HTTPQUERYEXCEPTION_H_
  23. #define __HTTPQUERYEXCEPTION_H_ 1
  24. class CHttpQueryException : public CBasicException
  25. {
  26. public:
  27. CHttpQueryException(){m_strError = _T("");m_dwBErr=TSERR_SCRIPT;};
  28. CString m_strError;
  29. };
  30. #endif