Skip to content

Package: AlreadyExistsException

AlreadyExistsException

nameinstructionbranchcomplexitylinemethod
AlreadyExistsException(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

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: }