From b1445163d7f3d1aa616679a0d45792dc7d8291dd Mon Sep 17 00:00:00 2001 From: arcuri82 Date: Fri, 6 May 2022 08:46:12 +0200 Subject: [PATCH] better error message for Issue #505 --- .../org/evomaster/core/database/schema/ColumnFactory.kt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/core/src/main/kotlin/org/evomaster/core/database/schema/ColumnFactory.kt b/core/src/main/kotlin/org/evomaster/core/database/schema/ColumnFactory.kt index 12caec77c1..bdae8e9b25 100644 --- a/core/src/main/kotlin/org/evomaster/core/database/schema/ColumnFactory.kt +++ b/core/src/main/kotlin/org/evomaster/core/database/schema/ColumnFactory.kt @@ -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 ) )