EMMA Coverage Report (generated Sat Apr 29 12:52:00 BST 2006)
[all classes][net.sourceforge.pseudoq.solver]

COVERAGE SUMMARY FOR SOURCE FILE [ObsoleteStrategyException.java]

nameclass, %method, %block, %line, %
ObsoleteStrategyException.java100% (1/1)50%  (1/2)57%  (4/7)50%  (2/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ObsoleteStrategyException100% (1/1)50%  (1/2)57%  (4/7)50%  (2/4)
ObsoleteStrategyException (): void 0%   (0/1)0%   (0/3)0%   (0/2)
ObsoleteStrategyException (String): void 100% (1/1)100% (4/4)100% (2/2)

1/*
2 * Copyright (c) 2005 The PseudoQ Project.
3 *
4 * This file is part of PseudoQ.
5 *
6 * PseudoQ is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
10 *
11 * PseudoQ is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with PseudoQ; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19 */
20 
21package net.sourceforge.pseudoq.solver;
22 
23/**
24 * Exception class thrown by a solver strategy to indicate that it is obsolete
25 * and need not be called again.
26 * @author <a href="http://sourceforge.net/users/stevensa">Andrew Stevens</a>
27 */
28public class ObsoleteStrategyException extends java.lang.Exception {
29 
30    /**
31     * Creates a new instance of <code>ObsoleteStrategyException</code> without
32     * detail message.
33     */
34    public ObsoleteStrategyException() {
35    }
36 
37    /**
38     * Constructs an instance of <code>ObsoleteStrategyException</code> with the
39     * specified detail message.
40     * @param msg The detail message.
41     */
42    public ObsoleteStrategyException(String msg) {
43        super(msg);
44    }
45 
46}

[all classes][net.sourceforge.pseudoq.solver]
EMMA 2.0.5312 (C) Vladimir Roubtsov