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 Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
*
4
4
* This program and the accompanying materials are made available under the
5
5
* terms of the Eclipse Public License v. 2.0 which is available at
@@ -87,7 +87,7 @@ public static ReportQuery getReportQuery(Query query) {
87
87
return (ReportQuery )dbQuery ;
88
88
}
89
89
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 ()} ));
91
91
}
92
92
93
93
/**
@@ -98,7 +98,7 @@ public static DatabaseQuery getDatabaseQuery(Query query) {
98
98
return ((JpaQuery )query ).getDatabaseQuery ();
99
99
}
100
100
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 ()} ));
102
102
}
103
103
104
104
/**
@@ -115,7 +115,7 @@ public static ReadAllQuery getReadAllQuery(Query query) {
115
115
return (ReadAllQuery )dbQuery ;
116
116
}
117
117
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 ()} ));
119
119
}
120
120
121
121
/**
You can’t perform that action at this time.
0 commit comments