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

COVERAGE SUMMARY FOR SOURCE FILE [ExceptionHelper.java]

nameclass, %method, %block, %line, %
ExceptionHelper.java0%   (0/1)0%   (0/5)0%   (0/31)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ExceptionHelper0%   (0/1)0%   (0/5)0%   (0/31)0%   (0/5)
ExceptionHelper (): void 0%   (0/1)0%   (0/3)0%   (0/1)
createNewCoreException (String): CoreException 0%   (0/1)0%   (0/10)0%   (0/1)
createNewCoreException (String, Throwable): CoreException 0%   (0/1)0%   (0/11)0%   (0/1)
createNewInitialisationException (String): CoreException 0%   (0/1)0%   (0/3)0%   (0/1)
createNewInitialisationException (String, Throwable): CoreException 0%   (0/1)0%   (0/4)0%   (0/1)

1package de.uka.ipd.sdq.dsexplore.exception;
2 
3import org.eclipse.core.runtime.CoreException;
4import org.eclipse.core.runtime.Status;
5 
6public class ExceptionHelper {
7        
8        private static final String PLUGIN_ID = "de.uka.ipd.sdq.dsexplore";
9 
10        public static CoreException createNewCoreException(String message){
11                return  new CoreException(new Status(Status.ERROR, PLUGIN_ID, message));
12        }
13        
14        public static CoreException createNewCoreException(String message, Throwable cause){
15                return  new CoreException(new Status(Status.ERROR, PLUGIN_ID, message, cause));
16        }
17 
18        /**
19         * Could add a specific exception type here.
20         * @param message
21         * @return
22         */
23        public static CoreException createNewInitialisationException(String message) {
24                return createNewCoreException(message);
25        }
26        
27        public static CoreException createNewInitialisationException(String message, Throwable cause) {
28                return createNewCoreException(message, cause);
29        }
30}

[all classes][de.uka.ipd.sdq.dsexplore.exception]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov