001package io.ebean.enhance;
002
003/**
004 * Some unexpected bytecode that can't be supported.
005 * <p>
006 * For example, some unsupported OneToMany collection initialisation.
007 */
008public class EnhancementException extends RuntimeException {
009  public EnhancementException(String message) {
010    super(message);
011  }
012}