/******************************************************** * KeyNotFoundException.h * * * * XFX KeyNotFoundException class definition file * * Copyright © XFX Team. All Rights Reserved * ********************************************************/ #ifndef _SYSTEM_COLLECTIONS_GENERIC_KEYNOTFOUNDEXCEPTION_ #define _SYSTEM_COLLECTIONS_GENERIC_KEYNOTFOUNDEXCEPTION_ #include namespace System { namespace Collections { namespace Generic { /// /// The exception that is thrown when the key specified for accessing an element in a collection does not match any /// key in the collection. /// class KeyNotFoundException : public SystemException { public: KeyNotFoundException(); KeyNotFoundException(char* message); KeyNotFoundException(char* message, Exception* innerException); }; } } } #endif //_SYSTEM_COLLECTIONS_GENERIC_KEYNOTFOUNDEXCEPTION_