Refactoring, move more functionality into Manager

This commit is contained in:
AsamK 2015-12-12 11:38:15 +01:00
parent 4b5bfcba80
commit ef5d3a65f8
5 changed files with 258 additions and 190 deletions

View file

@ -0,0 +1,14 @@
package cli;
public class GroupNotFoundException extends Exception {
private final byte[] groupId;
public GroupNotFoundException(byte[] groupId) {
super();
this.groupId = groupId;
}
public byte[] getGroupId() {
return groupId;
}
}