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.

32 lines
509 B

  1. /*++
  2. Copyright Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. COREX.H
  5. Abstract:
  6. WMI Core Services Exceptions
  7. History:
  8. --*/
  9. #ifndef __COREX_H_
  10. #define __COREX_H_
  11. class CX_Exception {};
  12. class CX_MemoryException : public CX_Exception {};
  13. class CX_VarVectorException : public CX_Exception {};
  14. class CX_ContextMarshalException : public CX_Exception {};
  15. class Logic_Error : public CX_Exception {};
  16. class Bad_Handle : public Logic_Error {};
  17. #endif