001// 002// Name 003// $RCSfile: KeyIllegalFieldError.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:44 $ 012// 013package com.kabira.platform; 014 015/** 016 * Exception thrown when a field is used that isn't part of a key. 017 */ 018public class KeyIllegalFieldError extends KeyError 019{ 020 /** 021 * Serialization version. 022 */ 023 public final static long serialVersionUID = 1L; 024 025 /** 026 * Creates a KeyIllegalFieldError exception. 027 */ 028 public KeyIllegalFieldError() { } 029 030 /** 031 * Creates a KeyIllegalFieldError exception. 032 * @param message String to include in the exception. 033 */ 034 public KeyIllegalFieldError(String message) 035 { 036 super(message); 037 } 038}