Source Code Cross Referenced for JMSException.java in  » 6.0-JDK-Modules » JMS » javax » jms » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » JMS » javax.jms 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * @(#)JMSException.java	1.15 02/04/09
03:         *
04:         * Copyright 1997-2002 Sun Microsystems, Inc. All Rights Reserved.
05:         *
06:         *  SUN PROPRIETARY/CONFIDENTIAL.
07:         * This software is the proprietary information of Sun Microsystems, Inc.  
08:         * Use is subject to license terms.
09:         * 
10:         */
11:
12:        package javax.jms;
13:
14:        /**
15:         * <P>This is the root class of all JMS API exceptions.
16:         *
17:         * <P>It provides the following information:
18:         * <UL>
19:         *   <LI> A provider-specific string describing the error. This string is 
20:         *        the standard exception message and is available via the
21:         *        <CODE>getMessage</CODE> method.
22:         *   <LI> A provider-specific string error code 
23:         *   <LI> A reference to another exception. Often a JMS API exception will 
24:         *        be the result of a lower-level problem. If appropriate, this 
25:         *        lower-level exception can be linked to the JMS API exception.
26:         * </UL>
27:         * @version     1.0 - 5 Oct 1998
28:         * @author      Mark Hapner
29:         * @author      Rich Burridge
30:         **/
31:
32:        public class JMSException extends Exception {
33:
34:            /** Vendor-specific error code.
35:             **/
36:            private String errorCode;
37:
38:            /** <CODE>Exception</CODE> reference.
39:             **/
40:            private Exception linkedException;
41:
42:            /** Constructs a <CODE>JMSException</CODE> with the specified reason and 
43:             *  error code.
44:             *
45:             *  @param  reason        a description of the exception
46:             *  @param  errorCode     a string specifying the vendor-specific
47:             *                        error code
48:             **/
49:            public JMSException(String reason, String errorCode) {
50:                super (reason);
51:                this .errorCode = errorCode;
52:                linkedException = null;
53:            }
54:
55:            /** Constructs a <CODE>JMSException</CODE> with the specified reason and with
56:             *  the error code defaulting to null.
57:             *
58:             *  @param  reason        a description of the exception
59:             **/
60:            public JMSException(String reason) {
61:                super (reason);
62:                this .errorCode = null;
63:                linkedException = null;
64:            }
65:
66:            /** Gets the vendor-specific error code.
67:             *  @return   a string specifying the vendor-specific
68:             *                        error code
69:             **/
70:            public String getErrorCode() {
71:                return this .errorCode;
72:            }
73:
74:            /**
75:             * Gets the exception linked to this one.
76:             *
77:             * @return the linked <CODE>Exception</CODE>, null if none
78:             **/
79:            public Exception getLinkedException() {
80:                return (linkedException);
81:            }
82:
83:            /**
84:             * Adds a linked <CODE>Exception</CODE>.
85:             *
86:             * @param ex       the linked <CODE>Exception</CODE>
87:             **/
88:            public synchronized void setLinkedException(Exception ex) {
89:                linkedException = ex;
90:            }
91:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.