Skip to content
This repository was archived by the owner on Aug 8, 2023. It is now read-only.

Commit 0295824

Browse files
author
Chris Mihaly
committed
Use Java Standard UnsupportedOperationException
1 parent 5a141c7 commit 0295824

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/com/shotgunsoftware/Shotgun.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
import org.apache.ws.commons.util.NamespaceContextImpl;
1616
import org.apache.xmlrpc.XmlRpcException;
1717

18-
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
19-
2018
/**
2119
* Shotgun XML-RPC API Wrapper
2220
*
@@ -205,7 +203,7 @@ public boolean delete(DeleteRequest dr) throws XmlRpcException {
205203
* @throws XmlRpcException if the request failed
206204
*/
207205
public Map schema_read() throws XmlRpcException {
208-
throw new NotImplementedException();
206+
throw new UnsupportedOperationException();
209207
/**
210208
Object[] params = new Object[] { this.auth, new HashMap()};
211209
Map response = (Map)this.client.execute("schema_read", params);

0 commit comments

Comments
 (0)