Package: KonsistenzVerletztException
KonsistenzVerletztException
| name | instruction | branch | complexity | line | method | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| KonsistenzVerletztException(String) | 
  | 
  | 
  | 
  | 
  | 
||||||||||||||||||||
Coverage
1: package ablaeufe.operation;
2: 
3: /**
4:  * Exception, welche ausgelöst wird, sobald eine Konsistenzbedingung im Prozessmodell verletzt werden würde.
5:  */
6: public class KonsistenzVerletztException extends  RuntimeException {
7: 
8:     /**
9:      * Erstellt eine Exception mit spezifiziertere Nachricht.
10:      * @param message Nachricht der Exception.
11:      */
12:     KonsistenzVerletztException(final String message) {
13:         super(message);
14:     }
15: 
16: }