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.
|
|
//
// MODULE: HTTPQUERYEXCEPTION.CPP
//
// PURPOSE: Execption that is thrown from the CHttpQuery class.
//
// PROJECT: Generic Troubleshooter DLL for Microsoft AnswerPoint
//
// COMPANY: Saltmine Creative, Inc. (206)-633-4743 [email protected]
//
// AUTHOR: Richard Meadows
//
// ORIGINAL DATE: 6/4/96
//
// NOTES:
// 1. Based on Print Troubleshooter DLL
//
// Version Date By Comments
//--------------------------------------------------------------------
// V0.1 - RM Original
// V0.3 3/24/98 JM Local Version for NT5
//
#ifndef __HTTPQUERYEXCEPTION_H_
#define __HTTPQUERYEXCEPTION_H_ 1
class CHttpQueryException : public CBasicException { public: CHttpQueryException(){m_strError = _T("");m_dwBErr=TSERR_SCRIPT;};
CString m_strError; };
#endif
|