Skip to contentMethod: AlreadyExistsException(String)
      1: package util.exceptions;
2: 
3: /**
4:  * Exception, die fliegt, falls etwas bereits in irgendeiner Liste existiert und nicht erneut hinein soll.
5:  *
6:  */
7: public class AlreadyExistsException extends PPSException {
8:         
9:         /**
10:          * {@link Exception#Exception(String)}.
11:          * 
12:          * @param description
13:          *            {@link Exception#getMessage()}
14:          */
15:         public AlreadyExistsException(final String description) {
16:                 super(description);
17:         }
18:         
19:         /**
20:          * 
21:          */
22:         private static final long serialVersionUID = 1L;
23:         
24: }