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