mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
AR-166: Property constraints included in integrity checks
AR-194: Regular expression constraint applied to cm:name property to flag illegal characters Other minor fixes - Dictionary bootstrap bean depends on I18N bean being constructed - RegexConstraint check can be inverted - Some I18N message fixes git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2549 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -27,14 +27,14 @@ public class DictionaryException extends AlfrescoRuntimeException
|
||||
{
|
||||
private static final long serialVersionUID = 3257008761007847733L;
|
||||
|
||||
public DictionaryException(String msg)
|
||||
public DictionaryException(String msgId)
|
||||
{
|
||||
super(msg);
|
||||
super(msgId);
|
||||
}
|
||||
|
||||
public DictionaryException(String msg, Throwable cause)
|
||||
public DictionaryException(String msgId, Throwable cause)
|
||||
{
|
||||
super(msg, cause);
|
||||
super(msgId, cause);
|
||||
}
|
||||
|
||||
public DictionaryException(String msgId, Object ... args)
|
||||
|
Reference in New Issue
Block a user