1 16 17 package org.springframework.mail; 18 19 28 public class MailPreparationException extends MailException { 29 30 34 public MailPreparationException(String msg) { 35 super(msg); 36 } 37 38 43 public MailPreparationException(String msg, Throwable cause) { 44 super(msg, cause); 45 } 46 47 public MailPreparationException(Throwable cause) { 48 super("Could not prepare mail", cause); 49 } 50 51 } 52 | Popular Tags |