STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | List of all members
Concurrency::invalid_operation Class Reference

This class describes an exception thrown when an invalid operation is performed that is not more accurately described by another exception type thrown by the Concurrency Runtime. More...

#include <pplinterface.h>

Inheritance diagram for Concurrency::invalid_operation:

Public Member Functions

 invalid_operation (_In_z_ const char *_Message) _NOEXCEPT
 Constructs an invalid_operation object. More...
 
 invalid_operation () _NOEXCEPT
 Constructs an invalid_operation object. More...
 

Detailed Description

This class describes an exception thrown when an invalid operation is performed that is not more accurately described by another exception type thrown by the Concurrency Runtime.

The various methods which throw this exception will generally document under what circumstances they will throw it.

Constructor & Destructor Documentation

Concurrency::invalid_operation::invalid_operation ( _In_z_ const char *  _Message)
inlineexplicit

Constructs an invalid_operation object.

Parameters
_MessageA descriptive message of the error.
143  : exception(_Message)
144  { }
Definition: exception:80
Concurrency::invalid_operation::invalid_operation ( )
inline

Constructs an invalid_operation object.

151  : exception()
152  {}
Definition: exception:80

The documentation for this class was generated from the following file: