Skip to content

Commit

Permalink
better error message for Issue #505
Browse files Browse the repository at this point in the history
  • Loading branch information
arcuri82 committed May 6, 2022
1 parent 2f86389 commit b144516
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,13 @@ object ColumnFactory {
} catch (e: Exception) {
throw IllegalArgumentException(
String.format(
"Column data type %s is not supported in EvoMaster Data types",
"Column data type %s is not supported in EvoMaster data types." +
" Note that EvoMaster only support certain databases, including" +
" Postgres and MySQL. You can see the full, updated list on the main documentation" +
" page of EvoMaster." +
" If your database is listed there, please report this as an issue." +
" If not, you can still open a 'feature request' to ask to add support for such database." +
" But, of course, no guarantee of if/when it will be supported.",
typeAsString
)
)
Expand Down

0 comments on commit b144516

Please sign in to comment.