001package io.ebean.config;
002
003/**
004 * Throw when an processing an entity bean that is not bytecode enhanced.
005 *
006 * Refer: https://ebean.io/docs/trouble-shooting#not-enhanced
007 */
008public class BeanNotEnhancedException extends IllegalStateException {
009
010  private static final long serialVersionUID = 3008101919425876799L;
011
012  public BeanNotEnhancedException(String msg) {
013    super(msg);
014  }
015}