1 17 package org.alfresco.repo.search.impl.lucene; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 public class QueryParameterisationException extends AlfrescoRuntimeException 22 { 23 24 27 private static final long serialVersionUID = 1L; 28 29 public QueryParameterisationException(String msg) 30 { 31 super(msg); 32 } 33 34 public QueryParameterisationException(String msg, Throwable cause) 35 { 36 super(msg, cause); 37 } 38 39 } 40 | Popular Tags |