CAS Unit Tests
Clover coverage report - CAS Unit Tests
Coverage timestamp: Mon Jul 4 2005 18:13:17 CDT
file stats: LOC: 33   Methods: 4
NCLOC: 16   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
CasException.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;
 12   
 13    import java.rmi.RemoteException;
 14   
 15    public class CasException extends RemoteException {
 16   
 17  0 public CasException() {
 18    }
 19   
 20  0 public CasException(String message) {
 21  0 super(message);
 22    }
 23   
 24  0 public CasException(String message,
 25    Throwable exception) {
 26  0 super(message, exception);
 27    }
 28   
 29  0 public CasException(Throwable exception) {
 30  0 super("", exception);
 31    }
 32   
 33    }