1 17 package org.alfresco.service.cmr.repository; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 public class XPathException extends AlfrescoRuntimeException 22 { 23 private static final long serialVersionUID = 3544955454552815923L; 24 25 public XPathException(String msg) 26 { 27 super(msg); 28 } 29 30 public XPathException(String msg, Throwable cause) 31 { 32 super(msg, cause); 33 } 34 } 35 | Popular Tags |