Formatting Code base with ktlint
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-core / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / core / BluePrintException.kt
index 22be372..a2435da 100644 (file)
@@ -15,6 +15,7 @@
  */
 
 package org.onap.ccsdk.cds.controllerblueprints.core
+
 /**
  *
  *
@@ -41,9 +42,8 @@ class BluePrintException : Exception {
         this.code = code
     }
 
-    constructor(code: Int, cause: Throwable, message: String, vararg args: Any?)
-            super(String.format(message, *args), cause) {
+    constructor(code: Int, cause: Throwable, message: String, vararg args: Any?) :
+            super(String.format(message, *args), cause) {
         this.code = code
     }
 }
-