001/* 002 * The contents of this file are subject to the license and copyright 003 * detailed in the LICENSE and NOTICE files at the root of the source 004 * tree. 005 */ 006package org.fcrepo.search.api; 007 008/** 009 * An exception that indicates that the syntax of the condition expression 010 * is invalid and therefore cannot be parsed. 011 * 012 * @author dbernstein 013 */ 014public class InvalidConditionExpressionException extends Exception { 015 016 private static final long serialVersionUID = 1L; 017 018 /** 019 * Basic constructor 020 * 021 * @param msg The text of the exception. 022 */ 023 public InvalidConditionExpressionException(final String msg) { 024 super(msg); 025 } 026 027}