1 17 package org.alfresco.service.cmr.action; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 26 public class ActionServiceException extends AlfrescoRuntimeException 27 { 28 31 private static final long serialVersionUID = 3257571685241467958L; 32 33 public ActionServiceException(String msgId) 34 { 35 super(msgId); 36 } 37 38 public ActionServiceException(String msgId, Object [] msgParams) 39 { 40 super(msgId, msgParams); 41 } 42 43 public ActionServiceException(String msgId, Object [] msgParams, Throwable cause) 44 { 45 super(msgId, msgParams, cause); 46 } 47 48 public ActionServiceException(String msgId, Throwable cause) 49 { 50 super(msgId, cause); 51 } 52 } 53 | Popular Tags |