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