this.statusCode = Optional.of(statusCode);
}
public RestClientException(final String errorMessage, final Throwable cause) {
super(errorMessage, cause);
this.errorCollections = ImmutableList.of(new ErrorCollection(errorMessage));
statusCode = Optional.absent();
}