CAS Unit Tests
Clover coverage report - CAS Unit Tests
Coverage timestamp: Mon Jul 4 2005 18:13:17 CDT
file stats: LOC: 36   Methods: 4
NCLOC: 16   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
CasDBException.java - 0% 0% 0%
coverage
 1    /*
 2    * Portions of this file Copyright 1999-2005 University of Chicago
 3    * Portions of this file Copyright 1999-2005 The University of Southern California.
 4    *
 5    * This file or a portion of this file is licensed under the
 6    * terms of the Globus Toolkit Public License, found at
 7    * http://www.globus.org/toolkit/download/license.html.
 8    * If you redistribute this file, with or without
 9    * modifications, you must include this notice in the file.
 10    */
 11    package org.globus.cas.impl.databaseAccess;
 12   
 13    import org.globus.common.ChainedException;
 14   
 15    /**
 16    * Exception thrown by database access package
 17    */
 18    public class CasDBException extends ChainedException {
 19   
 20  0 public CasDBException() {
 21  0 super();
 22    }
 23   
 24  0 public CasDBException(String message) {
 25  0 super(message);
 26    }
 27   
 28  0 public CasDBException(String message, Exception e) {
 29  0 super(message, e);
 30   
 31    }
 32   
 33  0 public CasDBException(Exception e) {
 34  0 super("", e);
 35    }
 36    }