Development Java Tutorial

public class Main {
  public static void main(String[] argv) throws Exception {
    try {
      assert argv.length > 0;
    } catch (AssertionError e) {
      String message = e.getMessage();
      System.out.println(message);
    }
  }
}