discord-jadx/app/src/main/java/bolts/ExecutorException.java
2021-07-24 04:37:17 +02:00

6 lines
189 B
Java

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