001package com.avaje.ebean; 002 003/** 004 * Created by rob on 17/07/15. 005 */ 006public class FinderFieldNotFoundException extends RuntimeException { 007 008 public FinderFieldNotFoundException(NoSuchFieldException e) { 009 super(e); 010 } 011}