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 manager has been badly configured.
9    */
10  public class BadConfigException extends Exception {
11      public BadConfigException(Exception reason) {
12          super(reason);
13      }
14  }