ReflectedGlobalVariableNotFoundException

May be thrown when calling FindReflectedGlobalVariable


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

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

    xstring m_fullyQualifiedName;
};