You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throwInvalidAODReadError(fmt::format("Unable to resolve parent file for tree {}: {}", treename, e.what()));
545
+
} catch (...) {
546
+
throwInvalidAODReadError(fmt::format("Unable to resolve parent file for tree {}", treename));
547
+
}
540
548
if (parentFile != nullptr) {
541
549
int parentNumTF = parentFile->findDFNumber(0, folder.path());
542
550
if (parentNumTF == -1) {
543
551
auto parentRootFS = std::dynamic_pointer_cast<TFileFileSystem>(parentFile->mCurrentFilesystem);
544
-
throwstd::runtime_error(fmt::format(R"(DF {} listed in parent file map but not found in the corresponding file "{}")", folder.path(), parentRootFS->GetFile()->GetName()));
552
+
throwInvalidAODReadError(fmt::format(R"(DF {} listed in parent file map but not found in the corresponding file "{}")", folder.path(), parentRootFS->GetFile()->GetName()));
545
553
}
546
554
// first argument is 0 as the parent file object contains only 1 file
0 commit comments