Java Doc for SystemException.java in  » 6.0-JDK-Modules-sun » omg » org » omg » CORBA » 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 sun » omg » org.omg.CORBA 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.omg.CORBA.Object
   java.lang.Throwable
      java.lang.Exception
         java.lang.RuntimeException
            org.omg.CORBA.SystemException

All known Subclasses:   org.omg.CORBA.DATA_CONVERSION,  org.omg.CORBA.INVALID_ACTIVITY,  org.omg.CORBA.TIMEOUT,  org.omg.CORBA.ACTIVITY_REQUIRED,  org.omg.CORBA.TRANSACTION_UNAVAILABLE,  org.omg.CORBA.INV_OBJREF,  org.omg.CORBA.NO_MEMORY,  org.omg.CORBA.REBIND,  org.omg.CORBA.BAD_CONTEXT,  org.omg.CORBA.BAD_QOS,  org.omg.CORBA.INTF_REPOS,  org.omg.CORBA.IMP_LIMIT,  org.omg.CORBA.INVALID_TRANSACTION,  org.omg.CORBA.TRANSIENT,  org.omg.CORBA.TRANSACTION_MODE,  org.omg.CORBA.CODESET_INCOMPATIBLE,  org.omg.CORBA.MARSHAL,  org.omg.CORBA.PERSIST_STORE,  org.omg.CORBA.UNKNOWN,  org.omg.CORBA.BAD_PARAM,  org.omg.CORBA.INV_IDENT,  org.omg.CORBA.FREE_MEM,  org.omg.CORBA.portable.IndirectionException,  org.omg.CORBA.INV_FLAG,  org.omg.CORBA.COMM_FAILURE,  org.omg.CORBA.ACTIVITY_COMPLETED,  org.omg.CORBA.OBJECT_NOT_EXIST,  org.omg.CORBA.TRANSACTION_ROLLEDBACK,  org.omg.CORBA.INITIALIZE,  org.omg.CORBA.NO_RESPONSE,  org.omg.CORBA.BAD_OPERATION,  org.omg.CORBA.NO_IMPLEMENT,  org.omg.CORBA.NO_PERMISSION,  org.omg.CORBA.OBJ_ADAPTER,  org.omg.CORBA.NO_RESOURCES,  org.omg.CORBA.INTERNAL,  org.omg.CORBA.BAD_INV_ORDER,  org.omg.CORBA.TRANSACTION_REQUIRED,  org.omg.CORBA.INV_POLICY,  org.omg.CORBA.portable.UnknownException,  org.omg.CORBA.BAD_TYPECODE,
SystemException
abstract public class SystemException extends java.lang.RuntimeException (Code)
The root class for all CORBA standard exceptions. These exceptions may be thrown as a result of any CORBA operation invocation and may also be returned by many standard CORBA API methods. The standard exceptions contain a minor code, allowing more detailed specification, and a completion status. This class is subclassed to generate each one of the set of standard ORB exceptions. SystemException extends java.lang.RuntimeException; thus none of the SystemException exceptions need to be declared in signatures of the Java methods mapped from operations in IDL interfaces.
See Also:    documentation on * Java IDL exceptions


Field Summary
public  CompletionStatuscompleted
     The status of the operation that threw this exception.
public  intminor
     The CORBA Exception minor code.

Constructor Summary
protected  SystemException(String reason, int minor, CompletionStatus completed)
     Constructs a SystemException exception with the specified detail message, minor code, and completion status.

Method Summary
public  StringtoString()
     Converts this exception to a representative string.

Field Detail
completed
public CompletionStatus completed(Code)
The status of the operation that threw this exception.



minor
public int minor(Code)
The CORBA Exception minor code.




Constructor Detail
SystemException
protected SystemException(String reason, int minor, CompletionStatus completed)(Code)
Constructs a SystemException exception with the specified detail message, minor code, and completion status. A detail message is a String that describes this particular exception.
Parameters:
  reason - the String containing a detail message
Parameters:
  minor - the minor code
Parameters:
  completed - the completion status




Method Detail
toString
public String toString()(Code)
Converts this exception to a representative string.





Methods inherited from java.lang.Throwable
native public synchronized Throwable fillInStackTrace()(Code)(Java Doc)
public Throwable getCause()(Code)(Java Doc)
public String getLocalizedMessage()(Code)(Java Doc)
public String getMessage()(Code)(Java Doc)
public StackTraceElement[] getStackTrace()(Code)(Java Doc)
public synchronized Throwable initCause(Throwable cause)(Code)(Java Doc)
public void printStackTrace()(Code)(Java Doc)
public void printStackTrace(PrintStream s)(Code)(Java Doc)
public void printStackTrace(PrintWriter s)(Code)(Java Doc)
public void setStackTrace(StackTraceElement[] stackTrace)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from org.omg.CORBA.Object
Request _create_request(Context ctx, String operation, NVList arg_list, NamedValue result)(Code)(Java Doc)
Request _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist)(Code)(Java Doc)
org.omg.CORBA.Object _duplicate()(Code)(Java Doc)
DomainManager[] _get_domain_managers()(Code)(Java Doc)
org.omg.CORBA.Object _get_interface_def()(Code)(Java Doc)
Policy _get_policy(int policy_type)(Code)(Java Doc)
int _hash(int maximum)(Code)(Java Doc)
boolean _is_a(String repositoryIdentifier)(Code)(Java Doc)
boolean _is_equivalent(org.omg.CORBA.Object other)(Code)(Java Doc)
boolean _non_existent()(Code)(Java Doc)
void _release()(Code)(Java Doc)
Request _request(String operation)(Code)(Java Doc)
org.omg.CORBA.Object _set_policy_override(Policy[] policies, SetOverrideType set_add)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.