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