blob: 8b518a9c5fbcc2def8d26924f4fc719f05d98ffc [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/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.epsilon.flexmi;
public class ParseWarning {
protected int line;
protected String message;
public ParseWarning(int line, String message) {
super();
this.line = line;
this.message = message;
}
public int getLine() {
return line;
}
public void setLine(int line) {
this.line = line;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}