01: /*--------------------------------------------------------------------------*
02: | Copyright (C) 2006 Christopher Kohlhaas |
03: | |
04: | This program is free software; you can redistribute it and/or modify |
05: | it under the terms of the GNU General Public License as published by the |
06: | Free Software Foundation. A copy of the license has been included with |
07: | these distribution in the COPYING file, if not go to www.fsf.org |
08: | |
09: | As a special exception, you are granted the permissions to link this |
10: | program with every library, which license fulfills the Open Source |
11: | Definition as published by the Open Source Initiative (OSI). |
12: *--------------------------------------------------------------------------*/
13:
14: package org.rapla.components.xmlbundle.impl;
15:
16: /** thrown by the RaplaDictionary when a duplicated entry is found */
17: class UniqueKeyException extends Exception {
18: private static final long serialVersionUID = 1L;
19:
20: public UniqueKeyException(String text) {
21: super(text);
22: }
23: }
|