mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2025-04-29 00:10:35 +05:30
12 lines
322 B
Java
12 lines
322 B
Java
package org.schabi.newpipe.extractor.exceptions;
|
|
|
|
public class ContentNotAvailableException extends ParsingException {
|
|
public ContentNotAvailableException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public ContentNotAvailableException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|