Improve tests for exception handling
[aai/traversal.git] / aai-traversal / src / main / java / org / onap / aai / rest / dsl / DslQueryProcessor.java
index ffffaa6..695e125 100644 (file)
@@ -140,7 +140,7 @@ public class DslQueryProcessor {
             } else if (e.getTargetException() instanceof AAIException) {
                 AAIException ex = (AAIException) e.getTargetException();
                 throw new AAIException((ex.getCode().isEmpty() ? "AAI_6149" : ex.getCode()),
-                    "DSL Error  while processing the query :" + ex.getMessage());
+                    "DSL Error while processing the query :" + ex.getMessage());
             } else {
                 throw new AAIException("AAI_6152", "Exception while processing DSL query");
             }