1

add error handling (frontend) + exception changes

Co-authored-by: Christoph <tobi@urpost.de>
Co-authored-by: Mahgs <maxoerter@gmx.de>
This commit is contained in:
Christoph
2020-03-18 16:26:11 +01:00
parent 0ade9319fb
commit df7803f83d
20 changed files with 140 additions and 86 deletions

View File

@ -19,7 +19,8 @@ public class UpdateGroupDescriptionEvent extends Event {
this.newGroupDescription = newGroupDescription;
}
public void apply(Group group) {
@Override
public void applyEvent(Group group) {
group.setDescription(this.newGroupDescription);
}
}