blob: 5c7270da9ce4b3dd73ee97f3d4a15490ca87ca50 [file] [log] [blame]
// Copyright (C) 2014 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License"),
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.ericsson.gerrit.plugins.eventslog;
public class MalformedQueryException extends EventsLogException {
private static final long serialVersionUID = 1L;
public static final String MESSAGE =
"Query doesn't conform with the format required by the database";
/**
* Constructs a <code>MalformedQueryException</code> object with the default
* message.
*/
public MalformedQueryException() {
super(MESSAGE);
}
/**
* Constructs a <code>MalformedQueryException</code> object with the default
* message and a given <code>cause</code>.
*
* @param cause the underlying reason for this
* <code>MalformedQueryException</code>
*/
public MalformedQueryException(Throwable cause) {
super(MESSAGE, cause);
}
/**
* Constructs a <code>MalformedQueryException</code> object with a given
* <code>message</code>.
*
* @param message a description of the exception
*/
public MalformedQueryException(String message) {
super(message);
}
/**
* Constructs a <code>MalformedQueryException</code> object with a given
* <code>message</code> and a given <code>cause</code>.
*
* @param message a description of the exception
* @param cause the underlying reason for this
* <code>MalformedQueryException</code>
*/
public MalformedQueryException(String message, Throwable cause) {
super(message, cause);
}
}