An internal server error has occured during the request. See the error and message fields for more information.
31323334353637383940
// marshaller understands. String errorCode = parseErrorCode(json); if (errorCode == null || !errorCode.equals("InternalServerError")) return null; InternalServerErrorException e = (InternalServerErrorException)super.unmarshall(json); return e; }
313233343536373839
37383940414243444546
} } @Override public AmazonServiceException unmarshall(JSONObject json) throws Exception { InternalServerErrorException e = (InternalServerErrorException)super.unmarshall(json); e.setErrorCode("InternalServerError"); return e; }