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