Improving some error marker messages

This commit is contained in:
Kris De Volder
2017-01-24 19:07:37 -08:00
parent 3689bdb6f5
commit caa554d288
17 changed files with 74 additions and 17 deletions

View File

@@ -10,13 +10,15 @@
*******************************************************************************/
package org.springframework.ide.vscode.commons.languageserver.reconcile;
import org.springframework.ide.vscode.commons.util.ValueParseException;
/**
* Exception if there is a failure when parsing a value. It does not wrap
* other exceptions such that when thrown, the parse exception is the "deepest"
* error.
*
*/
public class ReconcileException extends Exception implements ProblemTypeProvider {
public class ReconcileException extends ValueParseException implements ProblemTypeProvider {
private static final long serialVersionUID = 1L;
private final ProblemType problemType;