소스 검색

SUBMARINE-57. Add more elaborate message if submarine command is not recognized. Contributed by Adam Antal

Szilard Nemeth 5 년 전
부모
커밋
e5f4cd0fda
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hadoop-submarine/hadoop-submarine-core/src/main/java/org/apache/hadoop/yarn/submarine/client/cli/Cli.java

+ 1 - 1
hadoop-submarine/hadoop-submarine-core/src/main/java/org/apache/hadoop/yarn/submarine/client/cli/Cli.java

@@ -100,7 +100,7 @@ public class Cli {
       }
     } else {
       printHelp();
-      throw new IllegalArgumentException("Bad parameters <TODO>");
+      throw new IllegalArgumentException("Unrecognized option: " + args[0]);
     }
   }
 }