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