Skip to content

Commit f8e18a3

Browse files
committed
Modify exception message to say that Admin API is not supported.
1 parent 5c373a8 commit f8e18a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloudinary-android/src/main/java/com/cloudinary/android/ApiStrategy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ public class ApiStrategy extends AbstractApiStrategy {
1010

1111
@SuppressWarnings("rawtypes")
1212
@Override
13-
public ApiResponse callApi(HttpMethod method, Iterable<String> uri, Map<String, ? extends Object> params, Map options) throws Exception {
14-
throw new Exception("not implemented");
13+
public ApiResponse callApi(HttpMethod method, Iterable<String> uri, Map<String, ?> params, Map options) throws Exception {
14+
throw new Exception("Administration API is not supported for mobile applications.");
1515
}
1616

1717
}

0 commit comments

Comments
 (0)