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); } }