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