1 37 38 package com.sun.j2ee.blueprints.servicelocator; 39 40 public class ServiceLocatorException extends RuntimeException { 41 public ServiceLocatorException() {} 42 public ServiceLocatorException(String msg) { super(msg); } 43 public ServiceLocatorException(String msg, Throwable cause) { super(msg, cause); } 44 public ServiceLocatorException(Throwable cause) { super(cause); } 45 } 46 | Popular Tags |