Migrate Move to PermissionBackend

Change-Id: Ice0bc9099f997e7c3c7d8cde03dd8434fa6c7e70
This commit is contained in:
Shawn Pearce
2017-04-28 15:07:32 +02:00
committed by David Pursehouse
parent ad62ecbabf
commit f537319c22
4 changed files with 47 additions and 19 deletions

View File

@@ -22,4 +22,12 @@ public class AuthException extends RestApiException {
public AuthException(String msg) {
super(msg);
}
/**
* @param msg message to return to the client.
* @param cause cause of this exception.
*/
public AuthException(String msg, Throwable cause) {
super(msg, cause);
}
}