View Javadoc

1   /*
2    * REPOWEB, repository manager.
3    *
4    * Terms of license - http://opensource.org/licenses/apachepl.php
5    */
6   package org.repoweb.model;
7   /***
8    * Thrown when the repository was not able to build the POM.
9    */
10  public class BuildFailureException extends Exception {
11      public BuildFailureException(String msg) {
12          super(msg);
13      }
14  
15  
16      public BuildFailureException(String msg, Throwable cause) {
17          super(msg, cause);
18      }
19  }