mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 12:51:35 +02:00
Include message along with error description lines
This commit is contained in:
@@ -109,7 +109,10 @@ public class WLRepositoryResolver
|
||||
} catch (ForbiddenException e) {
|
||||
throw new ServiceNotAuthorizedException();
|
||||
} catch (GitUserException e) {
|
||||
throw new ServiceMayNotContinueException(String.join("\n", e.getDescriptionLines()), e);
|
||||
throw new ServiceMayNotContinueException(
|
||||
e.getMessage() + "\n" +
|
||||
String.join("\n", e.getDescriptionLines()),
|
||||
e);
|
||||
} catch (IOException e) {
|
||||
Log.warn(
|
||||
"IOException when trying to open repo: " + projName,
|
||||
|
||||
Reference in New Issue
Block a user