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