X-Git-Url: http://jaekl.net/gitweb/?p=frank.git;a=blobdiff_plain;f=report%2Fnet%2Fjaekl%2Fqd%2Futil%2FExceptionUtils.html;fp=report%2Fnet%2Fjaekl%2Fqd%2Futil%2FExceptionUtils.html;h=0000000000000000000000000000000000000000;hp=54f408a1c07c23439ba9999d4e8ea11a32f3ef9e;hb=c35af9e511e8390a66ca76331c3af43d0f0f7464;hpb=24f097b0fe78fa44f99b9f6f2e51a8e689d86a4a diff --git a/report/net/jaekl/qd/util/ExceptionUtils.html b/report/net/jaekl/qd/util/ExceptionUtils.html deleted file mode 100644 index 54f408a..0000000 --- a/report/net/jaekl/qd/util/ExceptionUtils.html +++ /dev/null @@ -1,201 +0,0 @@ - - -tests coverage - - - - - - - - - -
-Frames -No Frames -
-

- - - - - - - - - - - - - - - -
 %method%block%branch%line
net.jaekl.qd.util.ExceptionUtils
50%(1/2)
83%(5/6)
100%(2/2)
86%(6/7)
-

-

- - - - - - - - - - - - - - - - - - - -
hit countmethod namemethod modifiersmethod signature
0<init>[public]void <init>()
8tryClose[public, static]void tryClose(java.io.Closeable)
-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 1 
 package net.jaekl.qd.util;
 2 
 
 3 
 import java.io.Closeable;
 4 
 import java.io.IOException;
 5 
 
 6 
 import net.jaekl.qd.QDException;
 7 
 
 8 Block: 0/1 
 public class ExceptionUtils {
 9 
 	public static void tryClose(Closeable closeable) throws QDException {
 10 
 		try {
 11 Block: 1/1 
 			if (null != closeable) {
 12 Block: 1/1 Branch: 1/1 
 				closeable.close();
 13 
 			}
 14 
 		}
 15 Block: 1/1 
 		catch (IOException ioe) {
 16 
 			throw new QDException(ioe);
 17 Block: 1/1 Branch: 1/1 
 		}
 18 Block: 1/1 
 	}
 19 
 }
-

-

Report generated 11/12/14 11:31 PM
- -