28
28
import org .bson .BsonArray ;
29
29
import org .bson .BsonInt32 ;
30
30
import org .bson .BsonString ;
31
- import org .restheart .exchange .IllegalQueryParamenterException ;
31
+ import org .restheart .exchange .IllegalQueryParameterException ;
32
32
import org .restheart .exchange .MongoResponse ;
33
33
import org .restheart .mongodb .db .BulkOperationResult ;
34
34
import org .restheart .mongodb .utils .ResponseHelper ;
@@ -52,10 +52,10 @@ public BulkResultRepresentationFactory() {
52
52
* @param exchange
53
53
* @param result
54
54
* @return
55
- * @throws IllegalQueryParamenterException
55
+ * @throws IllegalQueryParameterException
56
56
*/
57
57
public Resource getRepresentation (HttpServerExchange exchange , BulkOperationResult result )
58
- throws IllegalQueryParamenterException {
58
+ throws IllegalQueryParameterException {
59
59
final String requestPath = buildRequestPath (exchange );
60
60
final Resource rep = createRepresentation (exchange , null );
61
61
@@ -69,10 +69,10 @@ public Resource getRepresentation(HttpServerExchange exchange, BulkOperationResu
69
69
* @param exchange
70
70
* @param mbwe
71
71
* @return
72
- * @throws IllegalQueryParamenterException
72
+ * @throws IllegalQueryParameterException
73
73
*/
74
74
public Resource getRepresentation (HttpServerExchange exchange , MongoBulkWriteException mbwe )
75
- throws IllegalQueryParamenterException {
75
+ throws IllegalQueryParameterException {
76
76
final String requestPath = buildRequestPath (exchange );
77
77
final Resource rep = createRepresentation (exchange , exchange .getRequestPath ());
78
78
@@ -215,12 +215,12 @@ private void addWriteErrors(
215
215
* @param embeddedData
216
216
* @param size
217
217
* @return
218
- * @throws IllegalQueryParamenterException
218
+ * @throws IllegalQueryParameterException
219
219
*/
220
220
@ Override
221
221
public Resource getRepresentation (HttpServerExchange exchange ,
222
222
BsonArray embeddedData , long size )
223
- throws IllegalQueryParamenterException {
223
+ throws IllegalQueryParameterException {
224
224
throw new UnsupportedOperationException ("Not supported." ); //To change body of generated methods, choose Tools | Templates.
225
225
}
226
226
}
0 commit comments