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

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

There is a newer version: 8.17.0
Show newest version
## 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