View Javadoc
1   package eu.simuline.m2latex.core;
2   
3   // TBD: rename: LatexBuildException, maybe abstract
4   /**
5    * The base class for {@link BuildExecutionException} 
6    * and for {@link BuildFailureException}. 
7    * This is needed as a wrapper to {@link org.apache.tools.ant.BuildException} 
8    * in {@link eu.simuline.m2latex.antTask.LatexCfgTask#execute()} 
9    * to avoid ant-specific classes. 
10   *
11   *
12   * Created: Fri Sep 30 15:01:16 2016
13   *
14   * @author <a href="mailto:rei3ner@arcor.de">Ernst Reissner</a>
15   * @version 1.0
16   */
17  class AbstractBuildException extends Exception {
18  
19    protected AbstractBuildException(String message) {
20      super(message);
21    }
22  
23    protected AbstractBuildException(String message, Throwable cause) {
24      super(message, cause);
25    }
26  }