package org.aspectj.lang;

import org.aspectj.runtime.internal.AroundClosure;

/* JADX INFO: loaded from: classes.dex */
public interface ProceedingJoinPoint extends JoinPoint {
    Object proceed() throws Throwable;

    Object proceed(Object[] objArr) throws Throwable;

    void set$AroundClosure(AroundClosure aroundClosure);
}
