ReflectedInterfaceNotFoundException

May be thrown when calling FindReflectedInterface


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

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

    xstring m_fullyQualifiedName;
};