mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2025-04-28 16:00:33 +05:30
Add an UnsupportedTabException exception class
This class makes easier for LinkHandlerFactory implementations to declare an UnsupportedOperationException.
This commit is contained in:
parent
76fb9dcdd7
commit
de823a6b68
@ -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);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user