Files
Bat/src/main/java/cc/fascinated/bat/exception/spotify/SpotifyTokenRefreshException.java

13 lines
314 B
Java
Raw Normal View History

package cc.fascinated.bat.exception.spotify;
import lombok.experimental.StandardException;
/**
* @author Fascinated (fascinated7)
*/
@StandardException
2024-06-29 16:54:39 +01:00
public class SpotifyTokenRefreshException extends RuntimeException {
public SpotifyTokenRefreshException(String message) {
super(message);
}
}