Skip to contentMethod: FaehigkeitsException(String)
      1: package util.exceptions;
2: 
3: /**
4:  * Exceptionklasse für Fehler, welche mit Fähigkeiten zusammenhängen.
5:  *
6:  */
7: public class FaehigkeitsException extends PPSException {
8:         
9:         /**
10:          * 
11:          */
12:         private static final long serialVersionUID = 1L;
13:         
14:         /**
15:          * @see Exception
16:          * 
17:          * @param message
18:          *            {@link Exception#Exception(String)}
19:          */
20:         public FaehigkeitsException(final String message) {
21:                 super(message);
22:         }
23:         
24: }