Piped-Backend/src/main/java/me/kavin/piped/utils/ExceptionHandler.java

27 lines
781 B
Java

package me.kavin.piped.utils;
import org.schabi.newpipe.extractor.exceptions.ContentNotAvailableException;
import java.util.concurrent.CompletionException;
import java.util.concurrent.ExecutionException;
public class ExceptionHandler {
public static Exception handle(Exception e) {
return handle(e, null);
}
public static Exception handle(Exception e, String path) {
if (e.getCause() != null && (e instanceof ExecutionException || e instanceof CompletionException))
e = (Exception) e.getCause();
if (!(e instanceof ContentNotAvailableException)) {
if (path != null)
System.err.println("An error occoured in the path: " + path);
e.printStackTrace();
}
return e;
}
}