1 package org.apache.fulcrum.security.util; 2 3 56 57 import org.apache.fulcrum.ServiceException; 58 59 65 public class TurbineSecurityException 66 extends ServiceException 67 { 68 73 public TurbineSecurityException(String msg) 74 { 75 super(msg); 76 } 77 78 86 public TurbineSecurityException(String msg, Throwable nested) 87 { 88 super(msg, nested); 89 } 90 }; 91 | Popular Tags |