001// 002// NAME 003// OperationFailed.java 004// 005// COPYRIGHT 006// Confidential Property of Kabira Technologies, Inc. 007// Copyright 2007, 2008 by Kabira Technologies, Inc. 008// All rights reserved. 009// 010// DESCRIPTION 011// 012// HISTORY 013// $Revision: 1.1.2.83 $ $Date: 2012/04/03 00:11:05 $ 014// 015// WARNINGS 016// THIS FILE IS GENERATED, DO NOT EDIT 017// 018 019package com.kabira.platform.switchconfig; 020 021/** 022<p> 023 Operation failed exception 024<p> 025 Requested operation failed 026@deprecated OperationFailed has been replaced by ConfigurationException. 027<p> 028OperationFailed 029 030*/ 031@Deprecated 032public class OperationFailed extends java.lang.Exception 033{ 034 035 /** 036 Constructs a new exception with <code>null</code> as 037 its detail message. 038 */ 039 public OperationFailed() { super(); } 040 041 /** 042 Constructs a new exception with the specified detail message. 043 */ 044 public OperationFailed(String message) { super(message); } 045 046 /** 047 Constructs a new exception with the specified detail message message and cause. 048 */ 049 public OperationFailed(String message, Throwable cause) 050 { super(message, cause); } 051 052 /** 053 Constructs a new exception with the specified cause 054 and a detail message of <code>(cause==null ? null : 055 cause.toString())</code> (which typically contains the 056class and detail message of cause). 057 */ 058 public OperationFailed(Throwable cause) { super(cause); } 059 public static final long serialVersionUID = 1; 060 061 /** 062 <p> 063Textual description of the failure 064 065 066 */ 067 public String reason; 068}