001// 002// Name 003// $RCSfile: ObjectNotUniqueError.java,v $ 004// 005// Copyright 006// Copyright 2007-2012 Cloud Software Group, Inc. ALL RIGHTS RESERVED. 007// Cloud Software Group, Inc. Confidential Information 008// 009// History 010// $Revision: 1.1.2.3 $ $Date: 2012/04/25 21:02:44 $ 011// 012package com.kabira.platform; 013 014/** 015 * Duplicate key exception. 016 * <p> 017 * This exception is thrown when an attempt to create a keyed object with 018 * non-unique key values occurs. 019 */ 020public class ObjectNotUniqueError extends RuntimeException 021{ 022 /** 023 * Serialization version. 024 */ 025 public static final long serialVersionUID = 1L; 026 027 /** 028 * Creates an ObjectNotUnique exception. 029 */ 030 public ObjectNotUniqueError() { } 031 032 /** 033 * Creates an ObjectNotUnique exception. 034 * @param message String to include in the exception. 035 */ 036 public ObjectNotUniqueError(String message) 037 { 038 super(message); 039 } 040}