diff options
author | Michi Henning <michi@zeroc.com> | 2009-06-10 16:06:51 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2009-06-10 16:06:51 +1000 |
commit | 918a6ee99820a09620599575e951cb0e5530d82b (patch) | |
tree | 108ca0dfd6d733ca76ddbedc70d5cc043151dda7 /java/src/IceSSL/ConnectionInvalidException.java | |
parent | Fixed bug in depednedncy creation (diff) | |
download | ice-918a6ee99820a09620599575e951cb0e5530d82b.tar.bz2 ice-918a6ee99820a09620599575e951cb0e5530d82b.tar.xz ice-918a6ee99820a09620599575e951cb0e5530d82b.zip |
Bug 3502 - Improve javadoc support in Eclipse.
Added more comments. Source files are now added to Ice.jar and Freeze.jar.
Diffstat (limited to 'java/src/IceSSL/ConnectionInvalidException.java')
-rw-r--r-- | java/src/IceSSL/ConnectionInvalidException.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/java/src/IceSSL/ConnectionInvalidException.java b/java/src/IceSSL/ConnectionInvalidException.java index 35eab43b584..67751a6ea76 100644 --- a/java/src/IceSSL/ConnectionInvalidException.java +++ b/java/src/IceSSL/ConnectionInvalidException.java @@ -9,22 +9,41 @@ package IceSSL; +/** + * Indicates that a connection is not an SSL connection. + **/ public final class ConnectionInvalidException extends Ice.LocalException { + /** + * Creates an instance with a <code>null</code> <code>reason</code> field. + **/ public ConnectionInvalidException() { } + /** + * Creates an instance with the specified <code>reason</code>field. + * + * @param reason The reason why the connection is considered invalid. + **/ public ConnectionInvalidException(String reason) { this.reason = reason; } + /** + * Returns the name of this exception. + * + * @return Returns <code>"Ice::ConnectionInvalidException"</code>. + **/ public String ice_name() { return "Ice::ConnectionInvalidException"; } + /** + * The reason why the connection is considered invalid. + **/ public String reason; } |