1 17 package org.alfresco.config; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 26 public class ConfigException extends AlfrescoRuntimeException 27 { 28 private static final long serialVersionUID = 3257008761007847733L; 29 30 public ConfigException(String msg) 31 { 32 super(msg); 33 } 34 35 public ConfigException(String msg, Throwable cause) 36 { 37 super(msg, cause); 38 } 39 } 40 | Popular Tags |