//If the user is an amdin of both forums
if (permissions.isSystemOrForumAdmin()
&& (newThread.hasPermission(Constants.SYSTEM_ADMIN) || newThread.hasPermission(Constants.FORUM_ADMIN))) {
thread.moveMessage(message, newThread, parentMessage);
} else {
throw new UnauthorizedException();
}
}