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