mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
Add UniversalId argument type to exception message on invalid access
This commit is contained in:
parent
292983d57a
commit
0aa569d4fe
@ -360,7 +360,7 @@ const std::string& CSMWorld::UniversalId::getId() const
|
||||
if (const std::string* result = std::get_if<std::string>(&mValue))
|
||||
return *result;
|
||||
|
||||
throw std::logic_error("invalid access to ID of non-ID UniversalId");
|
||||
throw std::logic_error("invalid access to ID of " + ::toString(getArgumentType()) + " UniversalId");
|
||||
}
|
||||
|
||||
int CSMWorld::UniversalId::getIndex() const
|
||||
@ -368,7 +368,7 @@ int CSMWorld::UniversalId::getIndex() const
|
||||
if (const int* result = std::get_if<int>(&mValue))
|
||||
return *result;
|
||||
|
||||
throw std::logic_error("invalid access to index of non-index UniversalId");
|
||||
throw std::logic_error("invalid access to index of " + ::toString(getArgumentType()) + " UniversalId");
|
||||
}
|
||||
|
||||
ESM::RefId CSMWorld::UniversalId::getRefId() const
|
||||
|
Loading…
x
Reference in New Issue
Block a user