Skip to content
Snippets Groups Projects

Javadoc updates.

Merged BEAUVAIS ANTOINE requested to merge develop into master
Compare and
28 files
+ 161
34
Preferences
Compare changes
Files
28
@@ -23,11 +23,11 @@ public class ApiBadRequestException extends Exception {
/**
* Class constructor.
* @param errMsg the error message.
* @param string the error message.
*/
public ApiBadRequestException(String errMsg)
public ApiBadRequestException(String string)
{
super(errMsg);
super(string);
}
}