1 17 package org.alfresco.service.cmr.repository; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 24 public class TemplateException extends AlfrescoRuntimeException 25 { 26 29 public TemplateException(String msgId) 30 { 31 super(msgId); 32 } 33 34 38 public TemplateException(String msgId, Throwable cause) 39 { 40 super(msgId, cause); 41 } 42 43 47 public TemplateException(String msgId, Object [] params) 48 { 49 super(msgId, params); 50 } 51 52 57 public TemplateException(String msgId, Object [] msgParams, Throwable cause) 58 { 59 super(msgId, msgParams, cause); 60 } 61 } 62 | Popular Tags |