16 lines
362 B
Java
16 lines
362 B
Java
package org.aspectj.lang.reflect;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class NoSuchAdviceException extends Exception {
|
|
private static final long serialVersionUID = 3256444698657634352L;
|
|
private String name;
|
|
|
|
public NoSuchAdviceException(String str) {
|
|
this.name = str;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
}
|