1 26 package org.objectweb.jonas.client; 27 28 import org.objectweb.jonas.service.ServiceException; 29 30 31 37 public class ClientContainerException extends ServiceException { 38 43 public ClientContainerException(String message) { 44 this(message, null); 45 } 46 47 53 public ClientContainerException(String message, Throwable throwable) { 54 super(message, throwable); 55 } 56 } 57 | Popular Tags |