blob: af3c4a5459f1b5e761884da151add30981e8859f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.eol.exceptions;
import org.eclipse.epsilon.common.module.ModuleElement;
public class EolIllegalPropertyAssignmentException extends EolRuntimeException {
public String property;
public EolIllegalPropertyAssignmentException(String property, ModuleElement ast) {
super();
this.property = property;
this.ast = ast;
}
@Override
public String getReason(){
return "Invalid assignment to property '" + property + "'";
}
}