NewPipeExtractor/extractor/src/main/java/org/schabi/newpipe/extractor/exceptions/SoundCloudGoPlusContentExce...

12 lines
384 B
Java

package org.schabi.newpipe.extractor.exceptions;
public class SoundCloudGoPlusContentException extends ContentNotAvailableException {
public SoundCloudGoPlusContentException() {
super("This track is a SoundCloud Go+ track");
}
public SoundCloudGoPlusContentException(final Throwable cause) {
super("This track is a SoundCloud Go+ track", cause);
}
}