Indicates that an error occurred while processing the request and that the request was not completed.
333435363738394041
// marshaller understands. String errorCode = parseErrorCode(node); if (errorCode == null || !errorCode.equals("InternalFailure")) return null; InternalServerErrorException e = (InternalServerErrorException)super.unmarshall(node); return e; }
313233343536373839
// marshaller understands. String errorCode = parseErrorCode(json); if (errorCode == null || !errorCode.equals("InternalServerError")) return null; InternalServerErrorException e = (InternalServerErrorException)super.unmarshall(json); return e; }
31323334353637383940
// marshaller understands. String errorCode = parseErrorCode(node); if (errorCode == null || !errorCode.equals("InternalServerError")) return null; InternalServerErrorException e = (InternalServerErrorException)super.unmarshall(node); return e; }
37383940414243444546
} } @Override public AmazonServiceException unmarshall(JSONObject json) throws Exception { InternalServerErrorException e = (InternalServerErrorException)super.unmarshall(json); e.setErrorCode("InternalServerError"); return e; }