KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > j2ee > blueprints > docoriented > client > ServiceLocatorException


1 /* Copyright 2005 Sun Microsystems, Inc. All rights reserved. You may not modify, use, reproduce, or distribute this software except in compliance with the terms of the License at:
2  http://developer.sun.com/berkeley_license.html
3  $Id: ServiceLocatorException.java,v 1.1 2005/05/19 02:37:32 smitha Exp $ */

4
5 package com.sun.j2ee.blueprints.docoriented.client;
6
7 public class ServiceLocatorException extends RuntimeException JavaDoc {
8     public ServiceLocatorException() {}
9     public ServiceLocatorException(String JavaDoc msg) { super(msg); }
10     public ServiceLocatorException(String JavaDoc msg, Throwable JavaDoc cause) { super(msg, cause); }
11     public ServiceLocatorException(Throwable JavaDoc cause) { super(cause); }
12 }
13
Popular Tags