001// 002// Name 003// $RCSfile: StateConflictError.java,v $ 004// 005// Copyright 006// Confidential Property of Kabira Technologies, Inc. 007// Copyright 2007, 2010 by Kabira Technologies, Inc. 008// All rights reserved. 009// 010// History 011// $Revision: 1.1.2.2 $ $Date: 2010/05/11 23:50:59 $ 012// 013package com.kabira.platform; 014 015/** 016 * State conflict exception. 017 * <p> 018 * This exception is thrown when object data on the local node differs 019 * from that on a remote node. 020 */ 021public class StateConflictError extends Error 022{ 023 /** 024 * Serialization version. 025 */ 026 public static final long serialVersionUID = 1L; 027 028 /** 029 * Creates a StateConflictError exception. 030 */ 031 public StateConflictError() { } 032 033 /** 034 * Creates a StateConflictError exception. 035 * @param message String to include in the exception. 036 */ 037 public StateConflictError(String message) 038 { 039 super(message); 040 } 041}