View Javadoc

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      public InfrastructureException(Throwable cause)
18      {
19          super(cause);
20      }
21  
22      public InfrastructureException(String msg)
23      {
24          super(msg);
25      }
26  
27      public InfrastructureException(String msg, Throwable cause)
28      {
29          super(msg, cause);
30      }
31  }