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

13 lines
314 B
Java

package cc.fascinated.bat.exception.spotify;
import lombok.experimental.StandardException;
/**
* @author Fascinated (fascinated7)
*/
@StandardException
public class SpotifyTokenRefreshException extends RuntimeException {
public SpotifyTokenRefreshException(String message) {
super(message);
}
}