View Javadoc
1   package org.codehaus.plexus.compiler.eclipse;
2   
3   /**
4    * @author <a href="mailto:jal@etc.to">Frits Jalvingh</a>
5    * Created on 22-4-18.
6    */
7   public class EcjFailureException extends RuntimeException {
8       private final String ecjOutput;
9   
10      public EcjFailureException(String ecjOutput) {
11          super("Failed to run the ecj compiler: " + ecjOutput);
12          this.ecjOutput = ecjOutput;
13      }
14  
15      public String getEcjOutput() {
16          return ecjOutput;
17      }
18  }