Skip to content

Commit 7ffb888

Browse files
authored
Bugfix for - Missing error message when calling JpaHelper.getReportQuery() with wrong argument (#1914)
Fixes #1893 Signed-off-by: Radek Felcman <[email protected]>
1 parent d3fe11e commit 7ffb888

File tree

1 file changed

+4
-4
lines changed
  • jpa/org.eclipse.persistence.jpa/src/org/eclipse/persistence/jpa

1 file changed

+4
-4
lines changed

jpa/org.eclipse.persistence.jpa/src/org/eclipse/persistence/jpa/JpaHelper.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2018 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2023 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0 which is available at
@@ -87,7 +87,7 @@ public static ReportQuery getReportQuery(Query query) {
8787
return (ReportQuery)dbQuery;
8888
}
8989

90-
throw new IllegalArgumentException(ExceptionLocalization.buildMessage("jpa_helper_invalid_report_query" + query.getClass()));
90+
throw new IllegalArgumentException(ExceptionLocalization.buildMessage("jpa_helper_invalid_report_query", new Object[]{query.getClass()}));
9191
}
9292

9393
/**
@@ -98,7 +98,7 @@ public static DatabaseQuery getDatabaseQuery(Query query) {
9898
return ((JpaQuery)query).getDatabaseQuery();
9999
}
100100

101-
throw new IllegalArgumentException(ExceptionLocalization.buildMessage("jpa_helper_invalid_query" + query.getClass()));
101+
throw new IllegalArgumentException(ExceptionLocalization.buildMessage("jpa_helper_invalid_query", new Object[]{query.getClass()}));
102102
}
103103

104104
/**
@@ -115,7 +115,7 @@ public static ReadAllQuery getReadAllQuery(Query query) {
115115
return (ReadAllQuery)dbQuery;
116116
}
117117

118-
throw new IllegalArgumentException(ExceptionLocalization.buildMessage("jpa_helper_invalid_read_all_query" + query.getClass()));
118+
throw new IllegalArgumentException(ExceptionLocalization.buildMessage("jpa_helper_invalid_read_all_query", new Object[]{query.getClass()}));
119119
}
120120

121121
/**

0 commit comments

Comments
 (0)