Skip to content

Commit 57a27a6

Browse files
author
Vipin Sharma
committedSep 3, 2020
8252538: Replace @exception with @throws java.rmi package
Reviewed-by: rriggs
1 parent 43d3685 commit 57a27a6

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed
 

‎src/java.rmi/share/classes/java/rmi/MarshalledObject.java

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -107,9 +107,9 @@ public final class MarshalledObject<T> implements Serializable {
107107
* parameters for RMI calls.
108108
*
109109
* @param obj the object to be serialized (must be serializable)
110-
* @exception IOException if an <code>IOException</code> occurs; an
111-
* <code>IOException</code> may occur if <code>obj</code> is not
112-
* serializable.
110+
* @throws IOException if an <code>IOException</code> occurs; an
111+
* <code>IOException</code> may occur if <code>obj</code> is not
112+
* serializable.
113113
* @since 1.2
114114
*/
115115
public MarshalledObject(T obj) throws IOException {
@@ -161,12 +161,12 @@ private void readObject(ObjectInputStream stream)
161161
* the filter from that stream is used to deserialize the object.
162162
*
163163
* @return a copy of the contained object
164-
* @exception IOException if an <code>IOException</code> occurs while
165-
* deserializing the object from its internal representation.
166-
* @exception ClassNotFoundException if a
167-
* <code>ClassNotFoundException</code> occurs while deserializing the
168-
* object from its internal representation.
169-
* could not be found
164+
* @throws IOException if an <code>IOException</code> occurs while
165+
* deserializing the object from its internal representation.
166+
* @throws ClassNotFoundException if a
167+
* <code>ClassNotFoundException</code> occurs while deserializing
168+
* the object from its internal representation.
169+
* could not be found
170170
* @since 1.2
171171
*/
172172
public T get() throws IOException, ClassNotFoundException {

‎src/java.rmi/share/classes/java/rmi/Naming.java

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2005, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -81,10 +81,10 @@ private Naming() {}
8181
*
8282
* @param name a name in URL format (without the scheme component)
8383
* @return a reference for a remote object
84-
* @exception NotBoundException if name is not currently bound
85-
* @exception RemoteException if registry could not be contacted
86-
* @exception AccessException if this operation is not permitted
87-
* @exception MalformedURLException if the name is not an appropriately
84+
* @throws NotBoundException if name is not currently bound
85+
* @throws RemoteException if registry could not be contacted
86+
* @throws AccessException if this operation is not permitted
87+
* @throws MalformedURLException if the name is not an appropriately
8888
* formatted URL
8989
* @since 1.1
9090
*/
@@ -106,12 +106,12 @@ public static Remote lookup(String name)
106106
*
107107
* @param name a name in URL format (without the scheme component)
108108
* @param obj a reference for the remote object (usually a stub)
109-
* @exception AlreadyBoundException if name is already bound
110-
* @exception MalformedURLException if the name is not an appropriately
111-
* formatted URL
112-
* @exception RemoteException if registry could not be contacted
113-
* @exception AccessException if this operation is not permitted (if
114-
* originating from a non-local host, for example)
109+
* @throws AlreadyBoundException if name is already bound
110+
* @throws MalformedURLException if the name is not an appropriately
111+
* formatted URL
112+
* @throws RemoteException if registry could not be contacted
113+
* @throws AccessException if this operation is not permitted (if
114+
* originating from a non-local host, for example)
115115
* @since 1.1
116116
*/
117117
public static void bind(String name, Remote obj)
@@ -133,12 +133,12 @@ public static void bind(String name, Remote obj)
133133
* with a remote object.
134134
*
135135
* @param name a name in URL format (without the scheme component)
136-
* @exception NotBoundException if name is not currently bound
137-
* @exception MalformedURLException if the name is not an appropriately
138-
* formatted URL
139-
* @exception RemoteException if registry could not be contacted
140-
* @exception AccessException if this operation is not permitted (if
141-
* originating from a non-local host, for example)
136+
* @throws NotBoundException if name is not currently bound
137+
* @throws MalformedURLException if the name is not an appropriately
138+
* formatted URL
139+
* @throws RemoteException if registry could not be contacted
140+
* @throws AccessException if this operation is not permitted (if
141+
* originating from a non-local host, for example)
142142
* @since 1.1
143143
*/
144144
public static void unbind(String name)
@@ -158,11 +158,11 @@ public static void unbind(String name)
158158
*
159159
* @param name a name in URL format (without the scheme component)
160160
* @param obj new remote object to associate with the name
161-
* @exception MalformedURLException if the name is not an appropriately
162-
* formatted URL
163-
* @exception RemoteException if registry could not be contacted
164-
* @exception AccessException if this operation is not permitted (if
165-
* originating from a non-local host, for example)
161+
* @throws MalformedURLException if the name is not an appropriately
162+
* formatted URL
163+
* @throws RemoteException if registry could not be contacted
164+
* @throws AccessException if this operation is not permitted (if
165+
* originating from a non-local host, for example)
166166
* @since 1.1
167167
*/
168168
public static void rebind(String name, Remote obj)
@@ -187,9 +187,9 @@ public static void rebind(String name, Remote obj)
187187
* component)
188188
* @return an array of names (in the appropriate format) bound
189189
* in the registry
190-
* @exception MalformedURLException if the name is not an appropriately
191-
* formatted URL
192-
* @exception RemoteException if registry could not be contacted.
190+
* @throws MalformedURLException if the name is not an appropriately
191+
* formatted URL
192+
* @throws RemoteException if registry could not be contacted.
193193
* @since 1.1
194194
*/
195195
public static String[] list(String name)
@@ -228,7 +228,7 @@ private static Registry getRegistry(ParsedNamingURL parsed)
228228
* @return an object which contains each of the above
229229
* components.
230230
*
231-
* @exception MalformedURLException if given url string is malformed
231+
* @throws MalformedURLException if given url string is malformed
232232
*/
233233
private static ParsedNamingURL parseURL(String str)
234234
throws MalformedURLException

0 commit comments

Comments
 (0)
Please sign in to comment.