1 16 17 package org.springframework.mail; 18 19 25 public class MailParseException extends MailException { 26 27 31 public MailParseException(String msg) { 32 super(msg); 33 } 34 35 40 public MailParseException(String msg, Throwable cause) { 41 super(msg, cause); 42 } 43 44 48 public MailParseException(Throwable cause) { 49 super("Could not parse mail", cause); 50 } 51 52 } 53 | Popular Tags |