Skip to content

Commit 9ac48fb

Browse files
authored
Merge pull request #637 from microsoftgraph/errorItemNotFound
ErrorItemNotFound Error Code Inclusion
2 parents 25cc6fc + bb7008d commit 9ac48fb

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [2.0.14] - 2022-10-06
15+
16+
### Added
17+
18+
### Changed
19+
20+
- Fixes an issue where the error code 'ErrorItemNotFound' is not accounted for. #606
21+
- Bumps azure-core to 1.32.0 #603, #604, #605
22+
- Bumps azure-identity to 1.6.0 #633, #635
23+
1424
## [2.0.13] - 2022-05-26
1525

1626
### Added

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
2525
mavenArtifactId = microsoft-graph-core
2626
mavenMajorVersion = 2
2727
mavenMinorVersion = 0
28-
mavenPatchVersion = 13
28+
mavenPatchVersion = 14
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

src/main/java/com/microsoft/graph/core/GraphErrorCodes.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ public enum GraphErrorCodes {
4242
AUTHENTICATION_FAILURE,
4343
/** An unspecified error has occurred. */
4444
GENERAL_EXCEPTION,
45+
/** The resource could not be found, specific to the Exchange workload. */
46+
ERROR_ITEM_NOT_FOUND,
4547
/** The specified byte range is invalid or unavailable. */
4648
INVALID_RANGE,
4749
/** The request is malformed or incorrect. */

src/main/java/com/microsoft/graph/httpcore/TelemetryHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class TelemetryHandler implements Interceptor{
2525
/**
2626
* Current SDK version
2727
*/
28-
public static final String VERSION = "v2.0.13";
28+
public static final String VERSION = "v2.0.14";
2929
/**
3030
* Verion prefix
3131
*/

0 commit comments

Comments
 (0)