Conditions | 2 |
Total Lines | 8 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | package com.hltech.vaunt.generator; |
||
25 | private Service serviceRepresentation(String packageRoot, String serviceName) { |
||
26 | try { |
||
27 | return extractor.extractServiceRepresentation(packageRoot, serviceName); |
||
28 | } catch (JsonMappingException ex) { |
||
29 | throw new RuntimeException( |
||
30 | String.format( |
||
31 | "Error when trying to extract service representation: package=%s, service name=%s", |
||
32 | packageRoot, serviceName), ex); |
||
33 | } |
||
36 |