The Artima Developer Community
Sponsored Link

Java Buzz Forum
Here is the offending code in Castor

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Mats Henricson

Posts: 55
Nickname: matsh
Registered: May, 2003

Mats Henricson is interested in too much
Here is the offending code in Castor Posted: Jun 26, 2003 9:52 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Mats Henricson.
Original Post: Here is the offending code in Castor
Feed Title: Code:Q
Feed URL: http://sedoparking.com/search/registrar.php?domain=®istrar=sedopark
Feed Description: Mats Henricson's weblog
Latest Java Buzz Posts
Latest Java Buzz Posts by Mats Henricson
Latest Posts From Code:Q

Advertisement
        
try {
    sgen.generateSource(schemaFilename, packageName);
} catch(java.io.FileNotFoundException fne) {
    System.out.println("unable to open XML schema file");
    return;
}
My life would be better right now if the code was written like this:
        
try {
    sgen.generateSource(schemaFilename, packageName);
} catch(java.io.FileNotFoundException fne) {
    System.out.println("Unable to open XML schema file: " + fne);
    return;
}
I have now tried to copy my XSD file to pretty much every single possible directory, to see if Castor can find it, but no. Argl.

Read: Here is the offending code in Castor

Topic: Second Generation IDEs Previous Topic   Next Topic Topic: NetBeans bug or feature?

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use