mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
671 B
29 lines
671 B
package com.github.kiulian.downloader;
|
|
|
|
public abstract class YoutubeException extends Exception {
|
|
|
|
private YoutubeException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public static class DownloadException extends YoutubeException {
|
|
|
|
public DownloadException(String message) {
|
|
super(message);
|
|
}
|
|
}
|
|
|
|
public static class BadPageException extends YoutubeException {
|
|
|
|
public BadPageException(String message) {
|
|
super(message);
|
|
}
|
|
}
|
|
|
|
public static class CipherException extends YoutubeException {
|
|
|
|
public CipherException(String message) {
|
|
super(message);
|
|
}
|
|
}
|
|
}
|
|
|