Skip to content
Snippets Groups Projects
Commit 6d9469d9 authored by felmer's avatar felmer
Browse files

SP-491, BIS-255: Improve exception handling in FtpPathResolverContext.getExperiment()

SVN: 28263
parent 058fac85
No related branches found
No related tags found
No related merge requests found
......@@ -130,8 +130,11 @@ public class FtpPathResolverContext implements ISessionTokenProvider
service.listExperiments(sessionToken,
Collections.singletonList(experimentIdentifier),
new ExperimentFetchOptions());
experiment = result.isEmpty() ? null : result.get(0);
cache.putExperiment(experiment);
if (result.isEmpty())
{
throw new IllegalArgumentException("Unknown experiment " + experimentId);
}
cache.putExperiment(result.get(0));
}
return experiment;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment