KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Run > Deployment > ComponentAccessException


1 /* $Id: ComponentAccessException.java,v 1.1 2004/03/22 19:31:49 hnetynka Exp $ */
2 package SOFA.SOFAnode.Run.Deployment;
3
4 /** Component access exception.
5   *
6   * @author Petr Hnetynka
7   */

8 public class ComponentAccessException extends Exception JavaDoc {
9
10   public ComponentAccessException() {
11     super();
12   }
13
14   public ComponentAccessException(String JavaDoc msg) {
15     super(msg);
16   }
17
18   public ComponentAccessException(String JavaDoc msg, Throwable JavaDoc cause) {
19     super(msg, cause);
20   }
21
22   public ComponentAccessException(Throwable JavaDoc cause) {
23     super(cause);
24   }
25 }
26
Popular Tags