mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 16:35:45 +01:00
Fix peer review issues
This commit is contained in:
@@ -45,7 +45,7 @@ public class WorkingCopyPoolModule extends AbstractModule {
|
||||
Class<? extends WorkingCopyPool> strategyClass = (Class<? extends WorkingCopyPool>) classLoader.loadClass(workingCopyPoolStrategy);
|
||||
bind(WorkingCopyPool.class).to(strategyClass);
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException("could not instantiate class for working copy pool: " + workingCopyPoolStrategy, e);
|
||||
throw new IllegalStateException("could not instantiate class for working copy pool: " + workingCopyPoolStrategy, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user