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