io.lindstrom.m3u8.parser.PlaylistParserException Maven / Gradle / Ivy
package io.lindstrom.m3u8.parser;
import java.io.IOException;
public class PlaylistParserException extends IOException {
public PlaylistParserException(String message) {
super(message);
}
}