1 25 26 package org.objectweb.jonas.web; 27 28 29 import org.objectweb.jonas.service.ServiceException; 31 32 38 public class JWebContainerServiceException extends ServiceException { 39 40 45 public JWebContainerServiceException(final String message) { 46 super(message, null); 47 } 48 49 55 public JWebContainerServiceException(final String message, final Throwable throwable) { 56 super(message, throwable); 57 } 58 } 59 | Popular Tags |