invalid_link_target Class
This class describes an exception thrown when the link_target
method of a messaging block is called and the messaging block is unable to link to the target. This can be the result of exceeding the number of links the messaging block is allowed or attempting to link a specific target twice to the same source.
Syntax
class invalid_link_target : public std::exception;
Members
Public Constructors
Name | Description |
---|---|
invalid_link_target | Overloaded. Constructs an invalid_link_target object. |
Inheritance Hierarchy
exception
invalid_link_target
Requirements
Header: concrt.h
Namespace: concurrency
invalid_link_target
Constructs an invalid_link_target
object.
explicit _CRTIMP invalid_link_target(_In_z_ const char* _Message) throw();
invalid_link_target() throw();
Parameters
_Message
A descriptive message of the error.