15 lines
267 B
Java
15 lines
267 B
Java
package testutil;
|
|
|
|
import database.DaoException;
|
|
|
|
public class AnyValues {
|
|
|
|
public static String string() {
|
|
return "string";
|
|
}
|
|
|
|
public static DaoException daoException() {
|
|
return new DaoException(string(), new RuntimeException());
|
|
}
|
|
}
|