fixed exception name

This commit is contained in:
Lucio Lelii 2020-04-08 16:47:56 +02:00
parent ee9e001fcc
commit bc84828fc5
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class CollectorStubs implements RegistryStub {
}
}catch (ResourceDoesNotExistException | RemoveException e) {
throw e;
}catch (Exception e) {
}catch (Exception e1) {
throw new RemoveException("connection error removing resource");
}
}