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

io.ebean.config.BeanNotEnhancedException Maven / Gradle / Ivy

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

/**
 * Throw when an processing an entity bean that is not bytecode enhanced.
 *
 * Refer: https://ebean.io/docs/trouble-shooting#not-enhanced
 */
public class BeanNotEnhancedException extends IllegalStateException {

  private static final long serialVersionUID = 3008101919425876799L;

  public BeanNotEnhancedException(String msg) {
    super(msg);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy