Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package it.cnr.istc.pst.platinum.ai.executive.lang.ex; |
||
10 | public class ExecutionPreparationException extends Exception { |
||
11 | private static final long serialVersionUID = 1L; |
||
12 | |||
13 | protected ExecutionFailureCause cause; |
||
14 | |||
15 | /** |
||
16 | * |
||
17 | * @param msg |
||
18 | */ |
||
19 | public ExecutionPreparationException(String msg) { |
||
20 | super(msg); |
||
21 | } |
||
24 |