#9208 add group permission prefix

This commit is contained in:
Mohamed Karray
2018-08-31 14:23:44 +02:00
parent f0c9c11f2d
commit 56524fa460
6 changed files with 61 additions and 14 deletions

View File

@@ -1,4 +1,11 @@
package sonia.scm;
public class AlreadyExistsException extends Exception {
public AlreadyExistsException(String message) {
super(message);
}
public AlreadyExistsException() {
}
}

View File

@@ -7,4 +7,9 @@ public class NotFoundException extends Exception {
public NotFoundException() {
}
public NotFoundException(String message) {
super(message);
}
}