ReflectedFunctorNotFoundException

May be thrown when calling FindReflectedFunctor


struct ReflectedFunctorNotFoundException : public IException
{
    ReflectedFunctorNotFoundException(ConstStringZ fullyQualifiedName) :
        m_fullyQualifiedName(fullyQualifiedName) {}

    virtual void Write(xostream& os) const
    {
        os << "Reflected Functor not found : " << m_fullyQualifiedName;
    }

    xstring m_fullyQualifiedName;
};