mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
16 lines
384 B
Java
16 lines
384 B
Java
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);
|
|
}
|
|
}
|