Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit ea793859 authored by Mihai BOZ's avatar Mihai BOZ
Browse files

added tests for Edit resource page configuration tab

parent 90b192f8
No related branches found
No related tags found
No related merge requests found
Pipeline #216619 failed
......@@ -18,4 +18,15 @@ public class SMPRestException extends Exception {
"CONTENT = " + response.getEntity(String.class)));
}
public SMPRestException(String message, int responseStatus, String responseContent) {
super(String.format("%s \n %s \n %s \n",
message,
"STATUS = " + responseStatus,
"CONTENT = " + responseContent));
log.error(String.format("%s \n %s \n %s \n",
message,
"STATUS = " + responseStatus,
"CONTENT = " + responseContent));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment