May be thrown when calling FindReflected
struct ReflectedNotFoundException : public IException
{
ReflectedNotFoundException(ConstStringZ fullyQualifiedName) :
m_fullyQualifiedName(fullyQualifiedName) {}
virtual void Write(xostream& os) const
{
os << "Reflected not found : " << m_fullyQualifiedName;
}
xstring m_fullyQualifiedName;
};