Merge remote-tracking branch 'origin/rel-1.5-uzh' into development

Conflicts:
	src/main/java/ch/ethz/seb/sebserver/webservice/servicelayer/lms/impl/mockup/MockCourseAccessAPI.java
This commit is contained in:
anhefti 2023-06-15 15:11:16 +02:00
commit 0616f82c9f

View file

@ -141,7 +141,7 @@ public final class Result<T> {
if (this.error instanceof RuntimeException) {
throw (RuntimeException) this.error;
} else {
throw new RuntimeException("RuntimeExceptionWrapper cause: ", this.error);
throw new RuntimeException("RuntimeExceptionWrapper cause: " + this.error.getMessage(), this.error);
}
}