001// 002// Name 003// $RCSfile: KeyMalformedQueryError.java,v $ 004// 005// Copyright 006// Confidential Property of Kabira Technologies, Inc. 007// Copyright 2009, 2010 by Kabira Technologies, Inc. 008// All rights reserved. 009// 010// History 011// $Revision: 1.1.2.2 $ $Date: 2010/05/11 23:50:47 $ 012// 013package com.kabira.platform; 014 015/** 016 * Exception thrown for queries that make no sense (i.e. doesn't form 017 * a valid range for an ordered key). 018 */ 019public class KeyMalformedQueryError extends KeyError 020{ 021 /** 022 * Serialization version. 023 */ 024 public final static long serialVersionUID = 1L; 025 026 /** 027 * Creates a KeyMalformedQueryError exception. 028 */ 029 public KeyMalformedQueryError() { } 030 031 /** 032 * Creates a KeyMalformedQueryError exception. 033 * @param message String to include in the exception. 034 */ 035 public KeyMalformedQueryError(String message) 036 { 037 super(message); 038 } 039}