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