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

org.avaje.metric.agent.AlreadyEnhancedException Maven / Gradle / Ivy

package org.avaje.metric.agent;

/**
 * Exception thrown during enhancement when it is detected that the enhancement has already taken place.
 * 

* This is expected when off line enhancement (via ant task) is used. *

*/ public class AlreadyEnhancedException extends RuntimeException { private static final long serialVersionUID = -831705721822834774L; protected final String className; public AlreadyEnhancedException(String className) { this.className = className; } public String getClassName() { return className; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy