001package org.galaxyproject.gxformat2.v19_09.utils; 002 003import java.io.File; 004 005public class Validator { 006 public static void main(final String[] args) throws Exception { 007 if (args.length != 1) { 008 throw new Exception("No argument supplied to validate."); 009 } 010 // TODO: allow URLs and such. 011 final File uri = new File(args[0]); 012 RootLoader.loadDocument(uri); 013 } 014}