mirror of
https://github.com/TeamNewPipe/NewPipeExtractor
synced 2025-09-05 16:55:25 +00:00
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);
|
||
|
}
|
||
|
}
|