discord-jadx/app/src/main/java/bolts/ExecutorException.java

7 lines
189 B
Java

package bolts;
public class ExecutorException extends RuntimeException {
public ExecutorException(Exception exc) {
super("An exception was thrown by an Executor", exc);
}
}