EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.stoex.analyser.visitors]

COVERAGE SUMMARY FOR SOURCE FILE [TypeInferenceFailedException.java]

nameclass, %method, %block, %line, %
TypeInferenceFailedException.java0%   (0/1)0%   (0/2)0%   (0/32)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TypeInferenceFailedException0%   (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)

1package de.uka.ipd.sdq.stoex.analyser.visitors;
2 
3import de.uka.ipd.sdq.stoex.Expression;
4 
5public 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