import java.io.Serializable;
import java.util.Locale;
import javax.ejb.Remote;
+import org.mxchange.jusercore.exceptions.UserNotFoundException;
+import org.mxchange.jusercore.exceptions.UserStatusConfirmedException;
+import org.mxchange.jusercore.exceptions.UserStatusLockedException;
import org.mxchange.jusercore.model.user.User;
/**
* @param user User instance
* @param locale Locale instance
* @param baseUrl Base URL
+ * <p>
+ * @throws UserNotFoundException When the user is not found
+ * @throws UserStatusConfirmedException User account is already confirmed
+ * @throws UserStatusLockedException User account is locked
*/
- void resendConfirmationLink (final User user, final Locale locale, final String baseUrl);
+ void resendConfirmationLink (final User user, final Locale locale, final String baseUrl) throws UserNotFoundException, UserStatusConfirmedException, UserStatusLockedException;
}