Skip to content

Commit 03160e1

Browse files
author
Caitlin Bales (MSFT)
committed
Update error advice
1 parent 00944b6 commit 03160e1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/java/com/microsoft/graph/http/GraphFatalServiceException.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,7 @@ protected GraphFatalServiceException(final String method,
6060
public String getMessage(final boolean verbose) {
6161
//no inspection StringBufferReplaceableByString
6262
final StringBuilder sb = new StringBuilder();
63-
sb.append("[This is an unexpected error from Graph, please report this at ")
64-
.append(SDK_BUG_URL)
65-
.append(']')
66-
.append(NEW_LINE)
63+
sb.append("Unexpected exception returned from the service.")
6764
.append(super.getMessage(true));
6865
return sb.toString();
6966
}

0 commit comments

Comments
 (0)