2
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-08-31 14:26:14 +00:00

Add an UnsupportedTabException exception class

This class makes easier for LinkHandlerFactory implementations to declare an
UnsupportedOperationException.
This commit is contained in:
AudricV
2023-06-29 18:19:49 +02:00
committed by Stypox
parent 76fb9dcdd7
commit de823a6b68

View File

@@ -0,0 +1,7 @@
package org.schabi.newpipe.extractor.exceptions;
public final class UnsupportedTabException extends UnsupportedOperationException {
public UnsupportedTabException(final String unsupportedTab) {
super("Unsupported tab " + unsupportedTab);
}
}