26 lines
277 B
C++
26 lines
277 B
C++
/*++
|
|
|
|
Copyright (C) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
COREX.H
|
|
|
|
Abstract:
|
|
|
|
WMI Core Services Exceptions
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
#ifndef __COREX_H_
|
|
#define __COREX_H_
|
|
|
|
class CX_Exception {};
|
|
|
|
class CX_MemoryException : CX_Exception {};
|
|
|
|
|
|
#endif
|