1 package com.atlassian.mail; 2 3 import org.apache.commons.lang.exception.NestableException; 4 5 /** 6 * Created by IntelliJ IDEA. 7 * User: Administrator 8 * Date: Dec 9, 2002 9 * Time: 2:24:33 PM 10 * To change this template use Options | File Templates. 11 */ 12 public class MailException extends NestableException 13 { 14 public MailException() 15 { 16 } 17 18 public MailException(String s) 19 { 20 super(s); 21 } 22 23 public MailException(Throwable throwable) 24 { 25 super(throwable); 26 } 27 28 public MailException(String s, Throwable throwable) 29 { 30 super(s, throwable); 31 } 32 }