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 private static final long serialVersionUID = 8533769929372106003L; 011 012 public UnknownResourcePathException(String msg) { 013 super(msg); 014 } 015}