1 /*
2 * $Id: InvalidExpressionException.java 20321 2010-11-24 15:21:24Z dfeist $
3 * -------------------------------------------------------------------------------------
4 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
5 *
6 * The software in this package is published under the terms of the CPAL v1.0
7 * license, a copy of which has been included with this distribution in the
8 * LICENSE.txt file.
9 */
10 package org.mule.api.expression;
11
12 import org.mule.config.i18n.CoreMessages;
13
14 /**
15 * Is thrown explicitly when an expression is Malformed or invalid. Malformed means the syntax is not correct, but an
16 * expression can be invalid if it refers to an expression namespace or function that does not exist
17 */
18 public class InvalidExpressionException extends ExpressionRuntimeException
19 {
20 public InvalidExpressionException(String expression, String message)
21 {
22 super(CoreMessages.createStaticMessage(message + ". Offending expression string is: " + expression));
23 }
24 }