[Title] Changed to show more information when process fail
authordonghee yang <donghee.yang@samsung.com>
Wed, 9 Jan 2013 07:34:52 +0000 (16:34 +0900)
committerdonghee yang <donghee.yang@samsung.com>
Wed, 9 Jan 2013 07:34:52 +0000 (16:34 +0900)
org.tizen.nativeplatform/src/org/tizen/nativeplatform/util/CommandLauncher.java

index ba4d00c..10e36f5 100644 (file)
@@ -162,7 +162,7 @@ public class CommandLauncher {
                try {
                        proc = pb.start();
                } catch (IOException e) {
-                       throw new InterruptedException("Creating process failed!");
+                       throw new InterruptedException(String.format("Creating process failed! : %s => %s", command, e.getMessage()));
                }
                
                return proc;