Skip to content

Commit

Permalink
Update error message
Browse files Browse the repository at this point in the history
Co-authored-by: Dominik Lindner <[email protected]>
  • Loading branch information
Rdornier and dominikl authored Jan 29, 2024
1 parent 5aef3ff commit d4817f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/omero/gateway/facility/Facility.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public static <T extends Facility> T getFacility(final Class<T> type,
try{
serverHost = gateway.getServerHost();
}catch (DSOutOfServiceException e){
throw new ExecutionException("Not log-in ; Can't instantiate "
throw new ExecutionException("Not logged in; Can't instantiate "
+ type.getSimpleName(), e);
}
return (T) cache.get(type.getSimpleName() + ":" +serverHost, new Callable<Facility>() {
Expand Down

0 comments on commit d4817f8

Please sign in to comment.