Returned when the specified domain has been deprecated.
31323334353637383940
// marshaller understands. String errorCode = parseErrorCode(json); if (errorCode == null || !errorCode.equals("DomainDeprecatedFault")) return null; DomainDeprecatedException e = (DomainDeprecatedException)super.unmarshall(json); return e; }
313233343536373839
37383940414243444546
} } @Override public AmazonServiceException unmarshall(JSONObject json) throws Exception { DomainDeprecatedException e = (DomainDeprecatedException)super.unmarshall(json); e.setErrorCode("DomainDeprecatedFault"); return e; }
3132333435363738394041