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

/*++
Copyright © Microsoft Corporation. All rights reserved.
Module Name:
COREX.H
Abstract:
WMI Core Services Exceptions
History:
--*/
#ifndef __COREX_H_
#define __COREX_H_
class CX_Exception {};
class CX_MemoryException : public CX_Exception {};
class CX_VarVectorException : public CX_Exception {};
class CX_ContextMarshalException : public CX_Exception {};
class Logic_Error : public CX_Exception {};
class Bad_Handle : public Logic_Error {};
#endif