// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.prelude.query; /** * Runtime exception to mark errors in query parsing. * * @author Steinar Knutsen */ public class QueryException extends RuntimeException { private static final long serialVersionUID = -2975856668328596533L; public QueryException(String message) { super(message); } public QueryException(String message, Throwable cause) { super(message, cause); } }