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