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