mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
15 lines
335 B
Java
15 lines
335 B
Java
package io.ebeaninternal.dbmigration;
|
|
|
|
/**
|
|
* Exception when db migration resource path does not exist.
|
|
* <p>
|
|
* Typically the working directory or pathToResources is incorrect.
|
|
* </p>
|
|
*/
|
|
public class UnknownResourcePathException extends RuntimeException {
|
|
|
|
public UnknownResourcePathException(String msg) {
|
|
super(msg);
|
|
}
|
|
}
|