I am doing my project about software score reader, in this part I want to convert musicxmlparser to staccato/midi but before that I code some
public static void main(String[] args) throws InvalidMidiDataException, IOException {
MusicXmlParser parser = new MusicXmlParser();
StaccatoParserListener listener = new StaccatoParserListener();
parser.addParserListener(listener);
parser.parse(new File("C:\\Users\\ASUS\\Documents\\Java Project\\ActorPreludeSample.xml"));
}
and I got error
Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - unreported exception javax.xml.parsers.ParserConfigurationException; must be caught or declared to be thrown at jfugue.ParserDemo2.main(ParserDemo2.java:18)
What does this error mean?