View Javadoc
1   /*
2    * This file is part of ***  M y C o R e  ***
3    * See http://www.mycore.de/ for details.
4    *
5    * MyCoRe is free software: you can redistribute it and/or modify
6    * it under the terms of the GNU General Public License as published by
7    * the Free Software Foundation, either version 3 of the License, or
8    * (at your option) any later version.
9    *
10   * MyCoRe is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   * GNU General Public License for more details.
14   *
15   * You should have received a copy of the GNU General Public License
16   * along with MyCoRe.  If not, see <http://www.gnu.org/licenses/>.
17   */
18  
19  package org.mycore.common.config;
20  
21  import org.mycore.common.MCRException;
22  
23  /**
24   * Instances of this class represent an exception thrown because of an error in the MyCoRe configuration. Normally this
25   * will be the case when a configuration property that is required is not set or has an illegal value.
26   * 
27   * @author Jens Kupferschmidt
28   * @author Frank Lützenkirchen
29   * @version $Revision$ $Date$
30   */
31  public class MCRConfigurationException extends MCRException {
32      private static final long serialVersionUID = 1L;
33  
34      /**
35       * Creates a new MCRConfigurationException with an error message
36       * 
37       * @param message
38       *            the error message for this exception
39       */
40      public MCRConfigurationException(String message) {
41          super(message);
42      }
43  
44      /**
45       * Creates a new MCRConfigurationException with an error message and a reference to an exception thrown by an
46       * underlying system.
47       * 
48       * @param message
49       *            the error message for this exception
50       * @param cause
51       *            the exception that was thrown by an underlying system
52       */
53      public MCRConfigurationException(String message, Throwable cause) {
54          super(message, cause);
55      }
56  }