Package com.objfac.prebop

Examples of com.objfac.prebop.FileLocator


      if (t != null) {
        msg = "preprocessor unexpected error: "+t.toString();
      }
      else {
        msg = e.getMessage();
        FileLocator locator = e.getLocator();
        if (locator != null) {
          msg += " at line "+locator.getLineNumber()+" in file "+locator.getFileName();
        }
      }
      throw new BuildException(msg);
    }
  }
View Full Code Here

TOP

Related Classes of com.objfac.prebop.FileLocator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.