001// 002// Name 003// $RCSfile: KeyIncompleteError.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:46 $ 012// 013package com.kabira.platform; 014 015/** 016 * Exception thrown when an attempt is made to access a result set 017 * before all the fields defining a key are defined. 018 */ 019public class KeyIncompleteError extends KeyError 020{ 021 /** 022 * Serialization version. 023 */ 024 public final static long serialVersionUID = 1L; 025 026 /** 027 * Creates a KeyIncompleteError exception. 028 */ 029 public KeyIncompleteError() { } 030 031 /** 032 * Creates an KeyIncompleteError exception. 033 * @param message String to include in the exception. 034 */ 035 public KeyIncompleteError(String message) 036 { 037 super(message); 038 } 039}