org.sonar.plugins.findbugs.resource.ClassMetadataLoadingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-findbugs-plugin
Show all versions of sonar-findbugs-plugin
SpotBugs is a program that uses static analysis to look for bugs in Java code. It can detect a variety of common coding mistakes, including thread synchronization problems, misuse of API methods.
package org.sonar.plugins.findbugs.resource;
public class ClassMetadataLoadingException extends RuntimeException {
public ClassMetadataLoadingException(Throwable cause) {
super("ASM failed to load classfile metadata", cause);
}
}