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

io.ebean.enhance.common.AlreadyEnhancedException Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.enhance.common;

/**
 * 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; private final String className; public AlreadyEnhancedException(String className) { this.className = className; } public String getClassName() { return className; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy