1 25 package org.ofbiz.security; 26 27 import org.ofbiz.base.util.GeneralException; 28 29 36 public class SecurityConfigurationException extends GeneralException { 37 38 public SecurityConfigurationException(String str, Throwable t) { 39 super(str, t); 40 } 41 42 public SecurityConfigurationException(String str) { 43 super(str); 44 } 45 46 public SecurityConfigurationException() { 47 super(); 48 } 49 } 50 | Popular Tags |