diff --git a/src/main/java/com/microsoft/graph/http/GraphServiceException.java b/src/main/java/com/microsoft/graph/http/GraphServiceException.java index 7759c194c74..37ec3c6e760 100644 --- a/src/main/java/com/microsoft/graph/http/GraphServiceException.java +++ b/src/main/java/com/microsoft/graph/http/GraphServiceException.java @@ -147,6 +147,15 @@ protected GraphServiceException(final String method, this.error = error; this.verbose = verbose; } + + /** + * Gets the The HTTP response message + * + * @return The HTTP response message + */ + public String getResponseMessage() { + return responseMessage; + } @Override public String getMessage() {