1 17 package org.alfresco.service.cmr.admin; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 26 public class PatchException extends AlfrescoRuntimeException 27 { 28 private static final long serialVersionUID = 7022368915143884315L; 29 30 33 public PatchException(String msgId) 34 { 35 super(msgId); 36 } 37 38 42 public PatchException(String msgId, Object ... args) 43 { 44 super(msgId, args); 45 } 46 } 47 | Popular Tags |