001// 002// Name 003// $RCSfile: NodeMismatch.java,v $ 004// 005// Copyright 006// Confidential Property of Kabira Technologies, Inc. 007// Copyright 2010 by Kabira Technologies, Inc. 008// All rights reserved. 009// 010// History 011// $Revision: 1.1.2.1 $ $Date: 2010/11/04 23:54:00 $ 012// 013package com.kabira.platform.highavailability; 014 015/** 016 * Exception thrown when partitions contain an incompatible node list. 017 */ 018public class NodeMismatch extends java.lang.Error 019{ 020 /** 021 * Serialization version. 022 */ 023 public final static long serialVersionUID = 1L; 024 025 /** 026 * Creates a NodeMismatch exception. 027 */ 028 public NodeMismatch() { } 029 030 /** 031 * Creates a NodeMismatch exception. 032 * @param message String to include in the exception. 033 */ 034 public NodeMismatch(String message) 035 { 036 super(message); 037 } 038}