KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > mejb > ManagementEndpointException


1 /**
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 2005 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: ManagementEndpointException.java,v 1.2 2005/05/09 21:14:38 mwringe Exp $
23  * --------------------------------------------------------------------------
24  */

25 package org.objectweb.jonas.mejb;
26
27 /**
28  * Custom exceptions used by the web service monitoring endpoint (mejb.ear).
29  * @author Matt Wringe
30  * @author Vivek Lakshmanan
31  */

32 public class ManagementEndpointException extends Exception JavaDoc {
33
34     /**
35      * The type of exception.
36      */

37     private String JavaDoc exceptionType;
38
39     /**
40      * The exception message.
41      */

42     private String JavaDoc message;
43
44     /**
45      * Gets the exception type
46      * @return The exception type.
47      */

48     public String JavaDoc getExceptionType() {
49         return exceptionType;
50     }
51
52     /**
53      * Sets the exception type.
54      * @param exceptionType The exception type.
55      */

56     public void setExceptionType(String JavaDoc exceptionType) {
57         this.exceptionType = exceptionType;
58     }
59
60     /**
61      * Gets the exception message.
62      * @return The exception message.
63      */

64     public String JavaDoc getMessage() {
65         return message;
66     }
67
68     /**
69      * Sets the exception message.
70      * @param message The exception message.
71      */

72     public void setMessage(String JavaDoc message) {
73         this.message = message;
74     }
75
76 }
Popular Tags