The request was rejected because a specified parameter is not supported.
Error code 400. Unsupported operation.
This class is a member of the Java Collections Framework. @author Josh Bloch @version 1.21, 04/21/06 @since 1.2
37383940414243444546
} } @Override public AmazonServiceException unmarshall(JSONObject json) throws Exception { UnsupportedOperationException e = (UnsupportedOperationException)super.unmarshall(json); e.setErrorCode("UnsupportedOperationException"); return e; }
333435363738394041
// marshaller understands. String errorCode = parseErrorCode(node); if (errorCode == null || !errorCode.equals("AWS.SimpleQueueService.UnsupportedOperation")) return null; UnsupportedOperationException e = (UnsupportedOperationException)super.unmarshall(node); return e; }
37383940414243
protected Class supportedRepresentationType() { return PlatformApiRepresentation.class; } protected void instanceToJson(BaseResourceRepresentation representation, JSONObject json) { throw new UnsupportedOperationException(); }
190191192193194195196197198
if (op == OperationInfo.insert) numInserts = numSuccesses; else if (op != null && op != OperationInfo.upsert) numUpdates = numSuccesses; else throw new UnsupportedOperationException(op + " not supported"); return runProcessWithAttachmentListener(argMap, true, null, numInserts, numUpdates, numFailures, myAttachmentTemplateListener, files); }
693694695696697698699700
if (op == OperationInfo.insert) numInserts = numSuccesses; else if (op != null && op != OperationInfo.upsert) numUpdates = numSuccesses; else throw new UnsupportedOperationException(op + " not supported"); return runProcess(argMap, true, null, numInserts, numUpdates, numFailures, emptyId); }
1718171917201721172217231724
* Yahoo module currently does not support aliases. This method * throws an UnSupportedOperationException. */ public void changeBuddyAlias(Buddy buddy, String alias) throws UnsupportedOperationException { throw new UnsupportedOperationException("Yahoo module does not support buddy aliases."); }
416417418419420421422
* @throws UnsupportedOperationException if this protocol does not support * typing notifications. */ public void typingStarted(Buddy buddy) throws UnsupportedOperationException { throw new UnsupportedOperationException("Typing notifications are not supported."); }
429430431432433434435
* @throws UnsupportedOperationException if this protocol does not support * typing notifications. */ public void typingStopped(Buddy buddy) throws UnsupportedOperationException { throw new UnsupportedOperationException("Typing notifications are not supported."); }
83848586878889
else addParticipant(buddies[i]); } else throw new UnsupportedOperationException("This protocol does not support conference"); }
1027102810291030103110321033
_valid = true; registerCursor(this); } public int previousIndex() { throw new UnsupportedOperationException(); }