KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > webwork > portlet > sitemesh > InfrastructureException


1 /*
2  * Copyright (c) 2005 Opensymphony. All Rights Reserved.
3  */

4 package com.opensymphony.webwork.portlet.sitemesh;
5
6 /**
7  * @author <a HREF="mailto:hu_pengfei@yahoo.com.cn">Henry Hu </a>
8  * @since 2005-7-18
9  */

10 public class InfrastructureException extends RuntimeException JavaDoc {
11
12     public InfrastructureException(Throwable JavaDoc cause) {
13         super(cause);
14     }
15
16     public InfrastructureException(String JavaDoc msg) {
17         super(msg);
18     }
19
20     public InfrastructureException(String JavaDoc msg, Throwable JavaDoc cause) {
21         super(msg, cause);
22     }
23 }
Popular Tags