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