1 17 package org.alfresco.service.cmr.rule; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 26 public class RuleServiceException extends AlfrescoRuntimeException 27 { 28 31 private static final long serialVersionUID = 3257571685241467958L; 32 33 38 public RuleServiceException(String message) 39 { 40 super(message); 41 } 42 43 49 public RuleServiceException(String message, Throwable source) 50 { 51 super(message, source); 52 } 53 } 54 | Popular Tags |