EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012) |
---|
[all classes][de.uka.ipd.sdq.stoex.analyser.visitors] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
TypeInferenceFailedException.java | 0% (0/1) | 0% (0/2) | 0% (0/32) | 0% (0/4) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class TypeInferenceFailedException | 0% (0/1) | 0% (0/2) | 0% (0/32) | 0% (0/4) |
TypeInferenceFailedException (Expression): void | 0% (0/1) | 0% (0/15) | 0% (0/2) | |
TypeInferenceFailedException (Expression, String): void | 0% (0/1) | 0% (0/17) | 0% (0/2) |
1 | package de.uka.ipd.sdq.stoex.analyser.visitors; |
2 | |
3 | import de.uka.ipd.sdq.stoex.Expression; |
4 | |
5 | public class TypeInferenceFailedException extends RuntimeException { |
6 | |
7 | /** |
8 | * |
9 | */ |
10 | private static final long serialVersionUID = -3349723314768810885L; |
11 | |
12 | public TypeInferenceFailedException(Expression expr) { |
13 | super(new StoExPrettyPrintVisitor().prettyPrint(expr)+" - Inference of Type failed"); |
14 | } |
15 | |
16 | public TypeInferenceFailedException(Expression expr, String msg){ |
17 | super(new StoExPrettyPrintVisitor().prettyPrint(expr)+" - Inference of Type failed: "+msg); |
18 | } |
19 | |
20 | } |
[all classes][de.uka.ipd.sdq.stoex.analyser.visitors] |
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov |