ReflectedVariantNotFoundException

May be thrown when calling FindReflectedVariant


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

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

    xstring m_fullyQualifiedName;
};