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