Clover coverage report - Acegi Security System for Spring - 1.0.0-RC1
Coverage timestamp: Mon Dec 5 2005 09:05:15 EST
file stats: LOC: 56   Methods: 2
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
AcegiSecurityException.java - 100% 100% 100%
coverage
 1    /* Copyright 2004 Acegi Technology Pty Limited
 2    *
 3    * Licensed under the Apache License, Version 2.0 (the "License");
 4    * you may not use this file except in compliance with the License.
 5    * You may obtain a copy of the License at
 6    *
 7    * http://www.apache.org/licenses/LICENSE-2.0
 8    *
 9    * Unless required by applicable law or agreed to in writing, software
 10    * distributed under the License is distributed on an "AS IS" BASIS,
 11    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12    * See the License for the specific language governing permissions and
 13    * limitations under the License.
 14    */
 15   
 16    package org.acegisecurity;
 17   
 18    import org.springframework.core.NestedRuntimeException;
 19   
 20   
 21    /**
 22    * Abstract superclass for all exceptions thrown in the security package and
 23    * subpackages.
 24    *
 25    * <p>
 26    * Note that this is a runtime (unchecked) exception. Security exceptions are
 27    * usually fatal; there is no reason for them to be checked.
 28    * </p>
 29    *
 30    * @author Ben Alex
 31    * @version $Id: AcegiSecurityException.java,v 1.4 2005/11/17 00:55:49 benalex Exp $
 32    */
 33    public abstract class AcegiSecurityException extends NestedRuntimeException {
 34    //~ Constructors ===========================================================
 35   
 36    /**
 37    * Constructs an <code>AcegiSecurityException</code> with the specified
 38    * message and root cause.
 39    *
 40    * @param msg the detail message
 41    * @param t the root cause
 42    */
 43  3 public AcegiSecurityException(String msg, Throwable t) {
 44  3 super(msg, t);
 45    }
 46   
 47    /**
 48    * Constructs an <code>AcegiSecurityException</code> with the specified
 49    * message and no root cause.
 50    *
 51    * @param msg the detail message
 52    */
 53  127 public AcegiSecurityException(String msg) {
 54  127 super(msg);
 55    }
 56    }