forked from Fascinated/Bat
13 lines
314 B
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);
|
|
}
|
|
} |