mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
13 lines
312 B
Java
13 lines
312 B
Java
package io.ebean.bean;
|
|
|
|
/**
|
|
* This exception is thrown, when the default implementation of EntityBean is not or not properly overwritten by enhancer.
|
|
*
|
|
* @author Roland Praml, FOCONIS AG
|
|
*
|
|
*/
|
|
public class NotEnhancedException extends RuntimeException {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
}
|