Skip to content
Snippets Groups Projects
Commit 2ae60fa6 authored by felmer's avatar felmer
Browse files

improving exception handling

SVN: 21041
parent b8cb8526
No related branches found
No related tags found
No related merge requests found
......@@ -364,14 +364,15 @@ class AuthenticatedState extends AbstractDssComponentState
EnvironmentFailureException, RemoteAccessException
{
// Contact openBIS to find out which DSS server manages the data set
String url =
getDataStoreUrlFromDataStore(service.tryGetDataStoreBaseURL(getSessionToken(),
dataSetCode));
if (null == url)
String dataStoreBaseURL = service.tryGetDataStoreBaseURL(getSessionToken(),
dataSetCode);
if (null == dataStoreBaseURL)
{
throw new IllegalArgumentException("Could not retrieve data set with code "
+ dataSetCode);
}
String url =
getDataStoreUrlFromDataStore(dataStoreBaseURL);
IDssServiceRpcGeneric dssService = getDssServiceForUrl(url);
// Return a proxy to the data set
......
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