001package io.ebeaninternal.dbmigration;
002
003/**
004 * Exception when db migration resource path does not exist.
005 * <p>
006 * Typically the working directory or pathToResources is incorrect.
007 * </p>
008 */
009public class UnknownResourcePathException extends RuntimeException {
010
011  public UnknownResourcePathException(String msg) {
012    super(msg);
013  }
014}