DragonQuestAlchemy.java 331 B

12345678910
  1. public class DragonQuestAlchemy {
  2. public static void main(String[] args) {
  3. try {
  4. ItemHandler itemHandler = new ItemHandler("data");
  5. itemHandler.execute(args);
  6. } catch(Exception ex) {
  7. System.out.println(String.format("Error: %s", ex.getLocalizedMessage()));
  8. }
  9. }
  10. }