1 package org.apache.turbine.util.security; 2 3 18 19 import org.apache.turbine.util.TurbineException; 20 21 28 public class TurbineSecurityException 29 extends TurbineException 30 { 31 36 public TurbineSecurityException(String msg) 37 { 38 super(msg); 39 } 40 41 49 public TurbineSecurityException(String msg, Throwable nested) 50 { 51 super(msg, nested); 52 } 53 } 54 | Popular Tags |