mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Property constraint dictionary support
Constraint implementation support Regular expression constraint git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2547 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -16,13 +16,14 @@
|
||||
*/
|
||||
package org.alfresco.service.cmr.dictionary;
|
||||
|
||||
import org.alfresco.error.AlfrescoRuntimeException;
|
||||
|
||||
/**
|
||||
* Base Exception of Data Dictionary Exceptions.
|
||||
*
|
||||
* @author David Caruana
|
||||
*/
|
||||
public class DictionaryException extends RuntimeException
|
||||
public class DictionaryException extends AlfrescoRuntimeException
|
||||
{
|
||||
private static final long serialVersionUID = 3257008761007847733L;
|
||||
|
||||
@@ -36,4 +37,13 @@ public class DictionaryException extends RuntimeException
|
||||
super(msg, cause);
|
||||
}
|
||||
|
||||
public DictionaryException(String msgId, Object ... args)
|
||||
{
|
||||
super(msgId, args);
|
||||
}
|
||||
|
||||
public DictionaryException(String msgId, Throwable cause, Object ... args)
|
||||
{
|
||||
super(msgId, args, cause);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user