1 17 package org.alfresco.service.cmr.repository; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 22 30 public class ContentIOException extends AlfrescoRuntimeException 31 { 32 private static final long serialVersionUID = 3258130249983276087L; 33 34 public ContentIOException(String msg) 35 { 36 super(msg); 37 } 38 39 public ContentIOException(String msg, Throwable cause) 40 { 41 super(msg, cause); 42 } 43 } 44 | Popular Tags |