ReflectedTypedefNotFoundException

May be thrown when calling FindReflectedTypedef


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

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

    xstring m_fullyQualifiedName;
};