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 */
008public class UnknownResourcePathException extends RuntimeException {
009
010  public UnknownResourcePathException(String msg) {
011    super(msg);
012  }
013}