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

com.avaje.ebean.enhance.agent.AlreadyEnhancedException Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.enhance.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; final String className; public AlreadyEnhancedException(String className) { this.className = className; } public String getClassName() { return className; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy