Trying to parse an absolutely correct DRL (a regular build succeeds)...<br>  <br>    DrlParser parser = new DrlParser();<br>    FileReader fr = new FileReader( &quot;some.drl&quot; );<br>    // ... read file, create String<br>
    String drl = ...<br>    PackageDescr pd =  parser.parse( true, drl );<br>    if( pd == null ){<br>      System.out.println( &quot;pd id null!&quot; );<br>      System.out.println( parser.getErrors() );<br>    } else {<br>
       ...<br>    }<br><br>...and the error is:<br><br>pd id null!<br>[[-1,0]: Unknown error while parsing. This is a bug. Please contact the Development team.]<br><br>?<br>-W<br><br><br>