31a32
> #include <exception>
51a53,59
> // used to communicate that an in_port peeked the wrong message type
> class RejectException: public std::exception
> {
> virtual const char* what() const throw()
> { return "Port rejected message based on type"; }
> };
>