All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.newrelic.weave.violation.METHOD_NEW_ABSTRACT_UNSUPPORTED.md Maven / Gradle / Ivy

There is a newer version: 8.17.0
Show newest version
## METHOD_NEW_ABSTRACT_UNSUPPORTED ##

###Description###

This violation was raised because the @Weave class is attempting to define a new abstract method.

###Example###

####Original Class####
```
public class Example {

    public String exampleMethod() {
        return "example";
    }

}
```


####Bad####
```
@Weave
public abstract class Example {

    public abstract String newAbstractMethod(); // Causes violation

}
```




© 2015 - 2024 Weber Informatics LLC | Privacy Policy