Clover Coverage Report - Atlassian Core
Coverage timestamp: Sun Nov 30 2008 18:33:35 CST
3   31   3   1
0   16   1   3
3     1  
1    
 
 
  InfrastructureException       Line # 13 3 3 0% 0.0
 
No Tests
 
1    /*
2    * Copyright (c) 2003 by Atlassian Software Systems Pty. Ltd.
3    * All rights reserved.
4    */
5    package com.atlassian.core.exception;
6   
7   
8    /**
9    * @author Ara Abrahamian (ara_e_w@yahoo.com)
10    * @created May 15, 2003
11    * @version Revision: 1.1.1.1 $
12    */
 
13    public class InfrastructureException extends RuntimeException
14    {
15    //~ Constructors ---------------------------------------------------------------------------------------------------
16   
 
17  0 toggle public InfrastructureException(Throwable cause)
18    {
19  0 super(cause);
20    }
21   
 
22  0 toggle public InfrastructureException(String msg)
23    {
24  0 super(msg);
25    }
26   
 
27  0 toggle public InfrastructureException(String msg, Throwable cause)
28    {
29  0 super(msg, cause);
30    }
31    }