1 package org.apache.turbine.util.velocity; 2 3 18 19 import org.apache.turbine.util.TurbineException; 20 21 29 public class VelocityEmailException extends TurbineException 30 { 31 35 public VelocityEmailException() 36 { 37 } 38 39 45 public VelocityEmailException(String msg) 46 { 47 super(msg); 48 } 49 50 57 public VelocityEmailException(Throwable nested) 58 { 59 super(nested); 60 } 61 62 70 public VelocityEmailException(String msg, Throwable nested) 71 { 72 super(msg, nested); 73 } 74 } 75 | Popular Tags |