diff --git a/src/main/java/cc/fascinated/bat/service/SpotifyService.java b/src/main/java/cc/fascinated/bat/service/SpotifyService.java index 6f8d998..1b09e41 100644 --- a/src/main/java/cc/fascinated/bat/service/SpotifyService.java +++ b/src/main/java/cc/fascinated/bat/service/SpotifyService.java @@ -1,7 +1,6 @@ package cc.fascinated.bat.service; import cc.fascinated.bat.common.StringUtils; -import cc.fascinated.bat.exception.spotify.SpotifyTokenRefreshException; import cc.fascinated.bat.features.spotify.profile.SpotifyProfile; import cc.fascinated.bat.model.BatUser; import lombok.Getter; @@ -195,7 +194,6 @@ public class SpotifyService { log.info("Refreshed Spotify token for user {}", user.getName()); } catch (SpotifyWebApiException ex) { log.error("Failed to refresh Spotify token", ex); - throw new SpotifyTokenRefreshException("Failed to refresh Spotify token", ex); } }