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