EMMA Coverage Report (generated Sun Jan 17 14:36:44 UTC 2010)
[all classes][org.jomc]

COVERAGE SUMMARY FOR SOURCE FILE [ObjectManagementException.java]

nameclass, %method, %block, %line, %
ObjectManagementException.java100% (1/1)0%   (0/4)0%   (0/16)0%   (0/8)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ObjectManagementException100% (1/1)0%   (0/4)0%   (0/16)0%   (0/8)
ObjectManagementException (): void 0%   (0/1)0%   (0/3)0%   (0/2)
ObjectManagementException (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
ObjectManagementException (String, Throwable): void 0%   (0/1)0%   (0/5)0%   (0/2)
ObjectManagementException (Throwable): void 0%   (0/1)0%   (0/4)0%   (0/2)

1// SECTION-START[License Header]
2// <editor-fold defaultstate="collapsed" desc=" Generated License ">
3/*
4 *   Copyright (c) 2010 The JOMC Project
5 *   Copyright (c) 2005 Christian Schulte <cs@jomc.org>
6 *   All rights reserved.
7 *
8 *   Redistribution and use in source and binary forms, with or without
9 *   modification, are permitted provided that the following conditions
10 *   are met:
11 *
12 *     o Redistributions of source code must retain the above copyright
13 *       notice, this list of conditions and the following disclaimer.
14 *
15 *     o Redistributions in binary form must reproduce the above copyright
16 *       notice, this list of conditions and the following disclaimer in
17 *       the documentation and/or other materials provided with the
18 *       distribution.
19 *
20 *   THIS SOFTWARE IS PROVIDED BY THE JOMC PROJECT AND CONTRIBUTORS "AS IS"
21 *   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22 *   THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 *   PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE JOMC PROJECT OR
24 *   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 *   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 *   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27 *   OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28 *   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 *   OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
30 *   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 *   $Id: ObjectManagementException.java 1306 2010-01-16 14:28:11Z schulte2005 $
33 *
34 */
35// </editor-fold>
36// SECTION-END
37package org.jomc;
38 
39// SECTION-START[Documentation]
40// <editor-fold defaultstate="collapsed" desc=" Generated Documentation ">
41/**
42 * Gets thrown whenever an unexpected error condition is detected.
43 *
44 * @author <a href="mailto:cs@jomc.org">Christian Schulte</a> 1.0
45 * @version $Id: ObjectManagementException.java 1306 2010-01-16 14:28:11Z schulte2005 $
46 */
47// </editor-fold>
48// SECTION-END
49// SECTION-START[Annotations]
50// <editor-fold defaultstate="collapsed" desc=" Generated Annotations ">
51@javax.annotation.Generated( value = "org.jomc.tools.JavaSources",
52                             comments = "See http://jomc.sourceforge.net/jomc/1.0-alpha-14/jomc-tools" )
53// </editor-fold>
54// SECTION-END
55public class ObjectManagementException extends RuntimeException
56{
57    // SECTION-START[ObjectManagementException]
58 
59    /** Serial version UID for compatibility with 1.0.x object streams. */
60    private static final long serialVersionUID = -2224998950220565115L;
61 
62    /**
63     * Creates a new {@code ObjectManagementException} taking a message describing the exception.
64     *
65     * @param msg The message describing the exception.
66     */
67    public ObjectManagementException( final String msg )
68    {
69        super( msg );
70    }
71 
72    /**
73     * Creates a new {@code ObjectManagementException} taking a causing exception.
74     *
75     * @param t The cause of the exception.
76     */
77    public ObjectManagementException( final Throwable t )
78    {
79        super( t );
80    }
81 
82    /**
83     * Creates a new {@code ObjectManagementException} taking a message describing the exception and a causing
84     * exception.
85     *
86     * @param msg The message describing the exception.
87     * @param t The cause of the exception.
88     */
89    public ObjectManagementException( final String msg, final Throwable t )
90    {
91        super( msg, t );
92    }
93 
94    // SECTION-END
95    // SECTION-START[Constructors]
96    // <editor-fold defaultstate="collapsed" desc=" Generated Constructors ">
97 
98    /** Creates a new {@code ObjectManagementException} instance. */
99    @javax.annotation.Generated( value = "org.jomc.tools.JavaSources",
100                                 comments = "See http://jomc.sourceforge.net/jomc/1.0-alpha-14/jomc-tools" )
101    public ObjectManagementException()
102    {
103        // SECTION-START[Default Constructor]
104        super();
105        // SECTION-END
106    }
107    // </editor-fold>
108    // SECTION-END
109    // SECTION-START[Dependencies]
110    // SECTION-END
111    // SECTION-START[Properties]
112    // SECTION-END
113    // SECTION-START[Messages]
114    // SECTION-END
115}

[all classes][org.jomc]
EMMA 2.0.5312 (C) Vladimir Roubtsov