com.newrelic.weave.violation.ILLEGAL_CLASS_NAME.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of newrelic-weaver Show documentation
Show all versions of newrelic-weaver Show documentation
The Weaver of the Java agent.
## ILLEGAL_CLASS_NAME ##
###Description###
This violation was raised because the class is not annotated with @Weave but the original class exists.
###Example###
####Original Class####
```
public class Example {
}
```
####Bad####
```
// Missing @Weave
public class Example {
}
```
----------
####Good####
```
@Weave
public class Example {
}
```
© 2015 - 2024 Weber Informatics LLC | Privacy Policy