ReflectedGlobalFunctionNotFoundException

May be thrown when calling FindReflectedGlobalFunction


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

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

    xstring m_fullyQualifiedName;
};