Class org.omg.CORBA.NO_RESOURCES
All Packages Class Hierarchy This Package Previous Next Index
Class org.omg.CORBA.NO_RESOURCES
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----org.omg.CORBA.SystemException
|
+----org.omg.CORBA.NO_RESOURCES
- public final class NO_RESOURCES
- extends SystemException
The CORBA NO_RESOURCES exception.
These exceptions
may be thrown as a result of a CORBA NO_RESOURCES and may
also be returned by many standard CORBA API methods. It
contains a minor code, allowing more detailed specification, and a
completion status.
-
NO_RESOURCES()
- Constructs a NO_RESOURCES with a default minor code
of 0 and a completion state of COMPLETED_MAYBE.
-
NO_RESOURCES(int, CompletionStatus)
- Constructs a NO_RESOURCES with the specified
minor code and completion status.
-
NO_RESOURCES(String)
- Constructs a NO_RESOURCES with the specified detail.
-
NO_RESOURCES(String, int, CompletionStatus)
- Constructs a NO_RESOURCES with the specified detail
message, minor code, and completion status.
NO_RESOURCES
public NO_RESOURCES()
- Constructs a NO_RESOURCES with a default minor code
of 0 and a completion state of COMPLETED_MAYBE.
NO_RESOURCES
public NO_RESOURCES(String s)
- Constructs a NO_RESOURCES with the specified detail.
- Parameters:
- s - the String containing a detail message
NO_RESOURCES
public NO_RESOURCES(int minor,
CompletionStatus completed)
- Constructs a NO_RESOURCES with the specified
minor code and completion status.
- Parameters:
- minor - the minor code
- completed - the completion status
NO_RESOURCES
public NO_RESOURCES(String s,
int minor,
CompletionStatus completed)
- Constructs a NO_RESOURCES with the specified detail
message, minor code, and completion status.
A detail message is a String that describes this particular exception.
- Parameters:
- s - the String containing a detail message
- minor - the minor code
- completed - the completion status
All Packages Class Hierarchy This Package Previous Next Index